按评级对 Google API 中的附近搜索结果进行排序的最佳方式是什么?

我现在正在使用 Javascript(React-Native),并且我正在尝试使用 Google API 中的附近搜索来获取附近的一些地点。

如果我想根据评级对结果进行排序,该怎么办?

+我只想对超过指定评级的地方进行排序。


白衣非少年
浏览 76回答 1
1回答

慕容708150

您可以将 Javascripts inbuild Arraysort()函数与自定义compare function.https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Array/sort您的比较函数可能如下所示:function cCompare (a,b){&nbsp;if(a.rating < b.rating){&nbsp; &nbsp;return 1;&nbsp;&nbsp;}&nbsp;if(arating > b.rating){&nbsp; &nbsp;return -1;&nbsp;}&nbsp; &nbsp;return 0;&nbsp;}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript