雅虎通过管道将 JSON 传输到数据库
我想使用雅虎管道 JSON 中的 Jquery 创建一个自动完成系统,但自动完成功能仅从最新条目中提取,前几天的任何内容都不会显示。
我创建了一个 Yahoo Pipe 并将结果输出为 JSON。如何推送数据库的结果并稍后检索它?
这是我的工作示例: http://www.tylerharpool.com/json 我只想能够搜索以前的条目。
I want to make an auto complete system using Jquery from the yahoo pipes JSON, but the autocomplete only pulls from the latest entries and anything from previous days will not show.
I created a Yahoo Pipe and have outputted the result to JSON. How can one push the results of a database and then retrieve it later?
Here is my working example: http://www.tylerharpool.com/json
I just want to be able to search for previous entries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
YQL 模块将允许管道访问小型存储空间(大小为 100k,您可以存储 1000 个),您可以在其中保存和日后检索数据。
但是:您实际上并不需要管道来存储信息。
前几天的结果也可以保存在访问者的 PC 内,使用以下位置的 window.localStorage.setItem 功能:大多数网络浏览器。有一个 jquery 插件版本和其他几个版本,所以 Google 一下你喜欢的版本。
The YQL module will allow the pipe to access small storage pockets (100k in size, and you can 1000 of them) where you can keep and retrieve data at a later date.
HOWEVER: you don't actually need pipes to store information
The previous days results could be also be kept inside the visitors PC, using the window.localStorage.setItem feature found in most web browsers. There is a jquery plugin version and several others so Google around for one that you prefer.