我现在正在使用 Javascript(React-Native),并且我正在尝试使用 Google API 中的附近搜索来获取附近的一些地点。如果我想根据评级对结果进行排序,该怎么办?+我只想对超过指定评级的地方进行排序。
1 回答
慕容708150
TA贡献1831条经验 获得超4个赞
您可以将 Javascripts inbuild Arraysort()
函数与自定义compare function
.
https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Array/sort
您的比较函数可能如下所示:
function cCompare (a,b){
if(a.rating < b.rating){
return 1;
}
if(arating > b.rating){
return -1;
}
return 0;
}
添加回答
举报
0/150
提交
取消