0

使用

Cloud.Events.query({
            where: {
        lnglat: {
            '$nearSphere': [userlngglobal,userlatglobal],
            '$maxDistance': 0.00326
      }

我试图传递变量,但不断得到Error Obj Obj 我尝试使用'$nearSphere': [JSON.stringify(userlngglobal),54]相同的错误变量是从这里获取的

Ti.Geolocation.forwardGeocoder(textfield.getValue(), function(e) {
    Ti.API.info(e); 
    userlngglobal = e.longitude;
    userlatglobal = e.latitude;
    win.close();
     console.log('longitude' +userlngglobal);
         alert('latitude: '+userlatglobal);
    alert('youve updated it');
});
4

1 回答 1

1

从 Appcelerator 团队得到的答案

"$nearSphere":[Number(e.coords.longitude), Number(e.coords.latitude)]
于 2016-02-04T16:37:08.460 回答