Qt Remote Objects QML Types

的 QML 类型为 Qt Remote Objects的 QML 类型提供了构建远程对象网络所需的辅助部件。它们通常与组成特定网络的自定义注册复制类型结合使用。

例如,请看下面的 .rep 文件:

class MyType {
    PROP(QString myProp="Hello World")
};

生成的复制可注册为 QML 类型:

qmlRegisterType<MyTypeReplica>("custom",1,0,"MyTypeReplica")

然后从 QML 与基本类型 Node 结合使用:

import QtQuick
import QtRemoteObjects
import custom 1.0

Item {
    MyTypeReplica {
        id: myType
        node: Node { registryUrl: "local:registry" }
    }

    Text { text: myType.myProp }

    MouseArea {
        anchors.fill: parent
        onClicked: myType.pushMyProp("Updated Text")
    }
}

请注意,默认情况下你不能直接赋值给副本属性,而要使用push 函数。这是因为声明式编程和异步更新的混合可能会产生问题。具体来说,我们希望避免以下问题:

myType.myProp = "Updated Text"
console.log(myType.myProp) // logs "Hello World", as the new text has not yet been round-tripped

本模块中的 QML 类型可通过在 .qml 文件中使用以下导入语句导入到您的应用程序中:

import QtRemoteObjects

QML 类型

Host

Qt Remote Objects 网络上的主机节点

Node

Qt Remote Objects 网络上的节点

QtRemoteObjects

全局对象为在 QML 中处理远程类型提供了有用的功能

SettingsStore

持久化属性的基本存储

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.