我想像这样运行js函数
function setPersonalInfoValue(){
console.debug("setPersonalInfoValue()");
}
当页面以 QML 加载时。
我试过这个:
Rectangle {
id: page2
width: 100
height: 62
function setPersonalInfoValue(){
console.debug("setPersonalInfoValue()");
}
}
当我在第 1 页和第 2 页之间切换时,我想运行 setPersonalInfoValue() 函数。我该怎么做?