自动完成 Ajax - 获取各州城市的完整列表?

发布于 2024-08-22 17:17:40 字数 185 浏览 6 评论 0原文

我刚刚尝试在 EventBrite 上创建一个事件,他们有一个很好的城市自动完成输入(开始输入“san”,它将显示“旧金山,加利福尼亚州......”和其他列表)。

最好的方法是什么?您是否需要将其存储在本地数据库中,或者人们是否对谷歌地图或 yelp 之类的东西进行 ajax 调用?

Rails 中有一个组件/项目吗?

I just tried creating an Event on EventBrite and they have this nice autocomplete input for cities (start typing "san" and it will bring up "San Francisco, California..." and a list of others).

What's the best way to do that? Do you need to store that in a local database or do people make those ajax calls to something like google maps or yelp?

And is there a component/project for this in Rails??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Hello爱情风 2024-08-29 17:17:40

我对这个数据库做了类似的事情:

http://www.geonames.org/export/

但如果您不想拥有本地数据库,也可以使用他们的网络服务。

您将无法使用ajax调用google甚至geonames,因为您无法执行跨域请求,您必须在服务器端执行请求。

I did something like that with this database :

http://www.geonames.org/export/

But you can also use their webservices if you don't want to have a local database.

You won't be able to call google or even geonames with ajax because you can't do cross-domain request, you'll have to do the request on the server-side.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文