Thingworx:过滤 QueryImplementingThingsWithData
Thingworx: filter QueryImplementingThingsWithData
我想使用 QueryImplementingThingsWithData。
我创建了 GetPRwithoutCCR 服务,里面有相应的代码:
var query = {
filters: {
type: "EQ",
fieldName: "name", value: "AAA"
}
};
result = query;
但我在不应用过滤器的情况下继续获取所有已实现的内容。我做错了什么?
不要在加载混搭时触发 "QueryImplementingThingsWithData"。使用来自 "GetPRwithoutCCR" 的 ServiceInvokeCompleted 事件触发它。通过这种方式,您可以确保已收到来自 "GetPRwithoutCCR" 的结果并且查询字符串可用。
我想使用 QueryImplementingThingsWithData。 我创建了 GetPRwithoutCCR 服务,里面有相应的代码:
var query = {
filters: {
type: "EQ",
fieldName: "name", value: "AAA"
}
};
result = query;
但我在不应用过滤器的情况下继续获取所有已实现的内容。我做错了什么?
不要在加载混搭时触发 "QueryImplementingThingsWithData"。使用来自 "GetPRwithoutCCR" 的 ServiceInvokeCompleted 事件触发它。通过这种方式,您可以确保已收到来自 "GetPRwithoutCCR" 的结果并且查询字符串可用。