关于状态为 ZERO_RESULT 的 Google 自动完成查询的问题
Question regarding the Google Autocomplete query with ZERO_RESULT status
我使用 Google 自动完成查询实现了某种地址验证,对于我收到的一些搜索请求 ZERO_RESULT,根据文档,它的意思是:
ZERO_RESULTS indicates that the search was successful but returned no results. This may occur if the search was passed a bounds in a remote location.
我的问题是关于此声明的第二部分:This may occur if the search was passed a bounds in a remote location.
我找不到关于这部分的更多详细信息,这是什么意思?
我问是因为我用来测试验证的地址 return ZERO_RESULT 是一个有效地址,我实际上可以在 google 地图中找到它。
This may occur if the search was passed a bounds in a remote location
表示自动完成搜索的区域没有任何与查询匹配的结果。
界限为 "the region defined by location and radius"。
strictbounds
更有可能发生这种情况。
我使用 Google 自动完成查询实现了某种地址验证,对于我收到的一些搜索请求 ZERO_RESULT,根据文档,它的意思是:
ZERO_RESULTS indicates that the search was successful but returned no results. This may occur if the search was passed a bounds in a remote location.
我的问题是关于此声明的第二部分:This may occur if the search was passed a bounds in a remote location.
我找不到关于这部分的更多详细信息,这是什么意思?
我问是因为我用来测试验证的地址 return ZERO_RESULT 是一个有效地址,我实际上可以在 google 地图中找到它。
This may occur if the search was passed a bounds in a remote location
表示自动完成搜索的区域没有任何与查询匹配的结果。
界限为 "the region defined by location and radius"。
strictbounds
更有可能发生这种情况。