在 api 文本中搜索
我正在尝试使用 api,我只是在学习如何使用 php 实际实现 api,希望我能学会合并 jquery。我知道如何通过 mysql 及其数据与 php 创建一个简单的搜索功能,但是有没有办法在 api 中创建搜索?使用 API,有 json/xml 响应,而且它们都是字符串,所以我想知道用户是否能够搜索这些字符串?
谢谢
I'm trying to use an api and I'm just learning how to actually implement an api using php, hopefully I'll learn to incorporate jquery. I know how to create a simple search feature through mysql and its data with php, but is there a way to create search within the api? with API, there's json/xml responses, and they're all strings, so I was wondering if the user was able to search those strings?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先你必须通过AJAX将json数据发送到php。像这样:
然后您可以通过调用 $_GET['json'] 变量来调用 javascript 创建的变量。
First you have to send the json data to php via AJAX. Something like this:
You then can call the variable that javascript creates by calling the $_GET['json'] variable.