我无法使用数值查询字符串属性集。例如:
//entity in orion
{
"id": "Test.2",
"type": "Test",
"nombre": "1"
}
//query
http://<some-ip>:<some-port>/v2/entities?type=Test&q=nombre==1
//response
[]
我更改了属性以存储数字,然后查询效果很好。无论如何,应该可以查询数字字符串值,不应该吗?
修改
我发现此problem将在0.26版本中发布
答案 0 :(得分:1)
如the issue cited by @nespapu所述,NGSIv2将以下列方式允许这种可能性:
//query
http://<some-ip>:<some-port>/v2/entities?type=Test&q=nombre=='1'
但是,目前编写此版本的Orion版本(0.24.0)尚未实现此类功能。