标签: binding qml qt5 qtquick2
有没有办法在QML中打印某个属性的属性绑定代码?
例如:
root.foo = Qt.binding(function() {return width + "2"}) console.log(<code of root.foo>)
答案 0 :(得分:0)
无法在QML中获取函数体。在这里你可以阅读关于它的好文章: https://stackoverflow.com/a/33878445/5163799
我认为绑定也是如此。