Thingworx:过滤QueryImplementingThingsWithData

时间:2016-05-03 14:44:42

标签: thingworx

我想使用QueryImplementingThingsWithData。 我创建了服务GetPRwithoutCCR,里面有相应的代码:

var query = {
    filters: {
        type: "EQ",
        fieldName: "name", value: "AAA"
    }
};

result = query;

enter image description here

但是我正在进行所有实现的事情而不应用过滤器。我做错了什么?

1 个答案:

答案 0 :(得分:3)

不要在Mashup Loaded上触发“QueryImplementingThingsWithData”。使用“GetPRwithoutCCR”中的ServiceInvokeCompleted事件触发它。这样您就可以确保收到了“GetPRwithoutCCR”的结果,并且查询字符串可用。