JavaScript with 语句

作者: 赵者也 | 来源:发表于2017-12-06 14:31 被阅读2次

    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
            }
        }
    

    运行结果:

    运行结果

    相关文章

      网友评论

        本文标题:JavaScript with 语句

        本文链接:https://www.haomeiwen.com/subject/hgjxixtx.html