我想像这样运行js函数

function setPersonalInfoValue(){
        console.debug("setPersonalInfoValue()");
    }

在QML中加载页面时。

我尝试了这个:
Rectangle {
    id: page2
    width: 100
    height: 62

    function setPersonalInfoValue(){
        console.debug("setPersonalInfoValue()");
    }
}

当我在第1页到第2页之间切换时,我想运行setPersonalInfoValue()函数。
我怎样才能做到这一点?

最佳答案

最后,我使用了:

Component.onCompleted: {
    setPersonalInfoValue();
}

08-19 23:29