我正在尝试通过ngsi_connection.query
功能发送个性化参数(例如NEW_PARAMETER
)。可能吗?如果是这样,怎么样?
this.ngsi_connection.query(entityIdList, attributes, {
details: true,
limit: options.pageSize,
offset: (page - 1) * options.pageSize,
NEW_PARAMETER: "MY VALUE",
onSuccess: onNGSIQuerySuccess.bind(null, onSuccess, page),
onFailure: onError
});
注意:当然我已经对它进行了测试,并且请求中似乎包含的唯一参数是:limit,details,offset,如下所示。
<Request 'http://MY_IP:MY_PORT/v1/queryContext?limit=20&details=on&offset=0' [POST]>
答案 0 :(得分:1)
目前,唯一支持的参数是您列出的参数:limit
,details
和offset
。 AFAIK,这些是NGSI v1查询操作使用的唯一GET参数。请在ngsijs repo中打开一张新票证,说明查询操作是否有更多GET参数,或者是否要将这些GET参数添加到其他目的:)。