假设我有一个包含以下内容的 QML:
MainView {
id: main
Component {
MyItem {
// has function doSomething()
id: item
function doSomething() // this will work
Child {
function parent.doSomething() // this too
function item.doSomething() // and this
}
}
}
Page {
// here is where I would like to be able to call the function
}
}
我无法doSomething()
从不是孩子的任何东西中调用该函数,是否可以从Page {}
对象内部调用它?
我很抱歉这个问题写得这么糟糕,但我不确定如何用另一种方式表达。谢谢你的时间。