我想使用QueryImplementingThingsWithData。我创建了带有相应代码的服务GetPRwithoutCCR:
var query = {
filters: {
type: "EQ",
fieldName: "name", value: "AAA"
}
};
result = query;

但我是继续得到所有实现的东西,而不应用过滤器。我做错了什么?
发布于 2016-05-17 08:35:35
不要在加载的Mashup上触发"QueryImplementingThingsWithData“。使用来自“ServiceInvokeCompleted”的GetPRwithoutCCR事件触发它。通过这种方式,您可以确保收到了来自"GetPRwithoutCCR“的结果,并且查询字符串是可用的。
https://stackoverflow.com/questions/37007304
复制相似问题