with 语句类似于将作用域包含进特定的对象中,使用实例:
Item {
id: testA
property string sayHello: "hello world"
property string sayBye: "goodbye"
}
Item {
id: testB
Component.onCompleted: {
// js start
with (testA) {
console.log("sayHello: ", sayHello);
console.log("sayBye: ", sayBye);
}
// js end
}
}
运行结果:
运行结果
网友评论