QtRemoteObjects QML 类型

QtRemoteObjects 是为在 QML 中处理远程类型提供有用功能的全局对象。 更多...

导入语句: import QtRemoteObjects 5.15
Since: Qt 5.14

方法

  • Promise watch (QRemoteObjectPendingCall reply , int timeout )

详细描述

方法文档编制

Promise watch ( QRemoteObjectPendingCall reply , int timeout = 30000)

Encapsulates the return value, represented by reply , from a replica in a JavaScript Promise. A timeout can be set with timeout . The default timeout value is 30 seconds.

QtRemoteObjects.watch(replica.fetchDetails(identifier))
               .then(function(value) { details = value },
                     function(error) { console.log("error fetching details:", error) })