我的代码运行正常,但为什么我会收到警告消息:
QML Connections: Cannot assign to non-existent property "onValueChanged"
以下是我如何链接信号。
Connections {
target: myModel
onValueChanged: {
console.log("Valued changedRecieved in QML")
}
myModel是一个C ++类,我使用engine.rootContext()->setContextProperty("myModel", &model);
有没有办法删除此警告?
答案 0 :(得分:0)
在您的Connections范围内,只需设置 ignoreUnknownSignals:true