我曾尝试询问 Appcelerator 论坛,但没有得到回复……希望有人可以在这里提供帮助 - 非常感谢任何帮助。
我正在尝试查询 arrowdb 自定义对象以返回在两组坐标的 5 英里半径范围内的结果
我的自定义对象如下所示:
{
'name' : 'Text',
'coordinates': [
[long_1, lat_1],
[long_2, lat_2]
]
}
我的查询对象如下所示:
{
'coordinates': [
{
$nearSphere: [ long_1, lat_1 ],
$maxDistance: 5/3959
},
{
$nearSphere: [ long_2, lat_2 ],
$maxDistance: 5/3959
]
}
响应:
{
code = 500;
error = 1;
message = "Internal server error. The Appcelerator Cloud Services Team has just been notified of this problem.";
success = 0;
}