我正在构建使用algolia的android应用的ios版本 我正在使用本机脚本构建应用程序-角度框架
我使用了ativeScript-Algolia插件,但是每次我通过aroundLatLng搜索时 我收到错误
错误:{“状态”:400,“原因”:“ \” aroundLatLng \“参数的值无效,预期为浮点数”}
这是相关代码
//in the constructor of the component
this.client = new Algolia('ddd', 'aaa');
this.index = this.client.initIndex('index');
//inside ngOnInit
let latLng:string = parseFloat(this.lat).toFixed(4) + ',' +
parseFloat(this.lng).toFixed(4);
this.index.search(this.searchTerms , {
aroundLatLng : latLng,
aroundRadius: this.radius
} , (content , err) => {
if(err){
console.log("Error : " + JSON.stringify(err));
}else{
console.log("RESULT IS : " + JSON.stringify(content));
}
});
结果总是上面的错误, 我该如何解决?