1
我試圖通過ngsi_connection.query
函數發送個性化參數(例如,NEW_PARAMETER
)。可能嗎?如果是這樣,怎麼樣?使用NGSI查詢方法時可以傳遞自定義GET參數嗎?
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
});
注:當然我已經測試它,並且要包含在請求中,這似乎是唯一的參數是:極限,細節,偏移,如下表現。
<Request 'http://MY_IP:MY_PORT/v1/queryContext?limit=20&details=on&offset=0' [POST]>
好的,謝謝你的回覆。不需要添加新票;雖然。我的附加參數的原因與NGSI API上的參數不同 – netzahdzc