- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我一直在尝试在yelp fusion中实现商业搜索。但是我无法得到结果,我已经给出了类别以便进行过滤 代码:
function yelpSearchReuslt(latitude,longitude,radius,listOfResult){
const searchRequest = {
categories:"Restaurants",
latitude:latitude,
longitude:longitude,
radius:radius
};
const client = yelp.client(API_KEY);
client.search(searchRequest).then(response => {
const firstResult = response.jsonBody.businesses;
})
在 o/p 中,我得到了 Playground 和公园等类别o/p:
{
"id": "U2lT4qo4R80vsYKUFaBoCA",
"alias": "lost-hills-wonderful-park-lost-hills",
"name": "Lost Hills Wonderful Park",
"image_url": "https://s3-media1.fl.yelpcdn.com/bphoto/t5y8zHqDfx5mN2v7wtvUxw/o.jpg",
"is_closed": false,
"url": "https://www.yelp.com/biz/lost-hills-wonderful-park-lost-hills?adjust_creative=KOlGv8v3EO9ZpCUlYru9eg&utm_campaign=yelp_api_v3&utm_medium=api_v3_business_search&utm_source=KOlGv8v3EO9ZpCUlYru9eg",
"review_count": 10,
"categories": [
{
"alias": "playgrounds",
"title": "Playgrounds"
},
{
"alias": "parks",
"title": "Parks"
}
],
"rating": 4.5,
"coordinates": {
"latitude": 35.6164124330499,
"longitude": -119.689275188145
},
"transactions": [],
"location": {
"address1": "14688 Lost Hills Rd",
"address2": "",
"address3": "",
"city": "Lost Hills",
"zip_code": "93249",
"country": "US",
"state": "CA",
"display_address": [
"14688 Lost Hills Rd",
"Lost Hills, CA 93249"
]
},
"phone": "+16614482149",
"display_phone": "(661) 448-2149",
"distance": 13784.418058437912
}
最佳答案
看起来你已经差不多搞定了。您只需要使用“类别”的标识符而不是基于 documentation for the categories parameter 的名称其中说:
"The value in parenthesis should be used when specifying a search category input."
在你的例子中使用restaurants
而不是Restaurants
。在上面的代码中,将 searchRequest
的定义更改为:
const searchRequest = {
categories:"restaurants",
latitude:latitude,
longitude:longitude,
radius:radius
};
希望对您有所帮助!
-达林
关于node.js - Yelp 中的类别搜索在 nodejs 中未正确过滤。我给的类别是 "Restaurants"但我的 o/p 是 : parks and Playgrounds,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50541735/
使用php设计餐厅系统是否可取甚至可能?系统需要一个人下订单,并打印给厨师和经理,订单一直待处理,直到柜台结账。 我担心的不是系统规范,而是 php 实现它的能力,尤其是在下订单后命令打印选项时。我想
我面临这个问题,我想将数据插入餐馆,但它一直显示错误 namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Http
我正在构建一个简单的应用程序,允许用户保存他们的位置以备后用。 目标:用户在公司时输入他们的地址,我们保存公司名称 我的方法:我从 locationManager 请求位置。然后我将 CLLocati
我目前正在使用 MKLocalSearch 来搜索位置。我注意到在Apple Map中,搜索结果中会显示一些图标,表示该位置是餐厅、机场或医院。我也想实现该功能。所以我只想知道我们是否可以从MKLoc
题目地址:https://leetcode-cn.com/contest/weekly-contest-185/problems/reformat-the-string/ 题目描述 给你一个数组
我想通过使用 python 3.5 和带有 Google Places API 的模块 googleplaces 获取伦敦的所有餐馆。我阅读了 googleplaces 文档并在此处搜索,但我不明白。
对于标题写得不好,我深表歉意。我不知 Prop 体该怎么写。我有一个数组。我需要从数组中随机抓取三个项目。只有一个项目可以是“餐厅”,并且餐厅只能排在第三位。 让我用一个例子来解释一下。这是一个示例数
图像包含两种方法,我想将 id 从 Country 表传递到 Province 表 public class DataGeneraterServlet extends HttpServlet { @E
实际上,我正在尝试制作一款允许在餐厅接受订单的应用。 您可能知道,当服务员点菜时,他可以将菜单中的任何项目添加到记录(类似于笔记本)中,甚至还可以为添加的项目添加变体。 例如,当我从菜单中按下某些项目
我有一个 MySQL 表,用于存储餐厅评级,例如: id | user_id | res_id | rating_value | review_id | 1 | 102 | 5567 |
在我的 create-react-app 项目中,我正在构建一个带有图像的 React 组件。我想通过组件属性(或状态)传递确切的图像位置。在我的组件中,我正在使用 require,如下所示: 这给
当我转到“http://127.0.0.1:8000/restaurant/sign-in/”时,我收到页面未找到(404)错误。但我可以通过“http://127.0.0.1:8000/restau
我一直在尝试在yelp fusion中实现商业搜索。但是我无法得到结果,我已经给出了类别以便进行过滤 代码: function yelpSearchReuslt(latitud
我正在将我的应用程序从 Java 转换为 Kotlin,并且在执行下面的代码时遇到 ClassCastException。想法? private fun getImageFragments(image
我得到: [2012-06-10 12:47:39 - pet_game] Launch canceled! [2012-06-10 12:49:13 - pet_game] res\drawable
我是一名优秀的程序员,十分优秀!