1

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

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

result = query;

在此处输入图像描述

但我正在着手获得所有已实施的东西而不应用过滤器。我究竟做错了什么?

4

1 回答 1

3

不要在 Mashup 加载时触发“QueryImplementingThingsWithData”。使用“GetPRwithoutCCR”中的 ServiceInvokeCompleted 事件触发它。这样,您可以确保您已收到来自“GetPRwithoutCCR”的结果并且查询字符串可用。

于 2016-05-17T08:35:35.830 回答