自动完成 Ajax - 获取各州城市的完整列表?
我刚刚尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对这个数据库做了类似的事情:
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.