有没有办法通过 jQuery 进行无服务器 JSON 捕获?
我正在开发一个无服务器 Web 应用程序 - 平面文件中的 JS + jQuery、CSS、HTML - 我想发出 GET 请求来获取一些 JSON 数据。
我见过的唯一方法是通过 AJAX-y 方法,它需要使用后端服务器来处理发送 REST 请求...但我没有后端服务器。
我怎样才能做到这一点,所有这些都在 JS 脚本/文件中进行?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上有一个很棒的 jquery 模拟库可以实现 paykroyd 的建议。
https://github.com/appendto/jquery-mockjax
http://enterprisejquery.com/2010/07/mock-your-ajax-requests-with-mockjax-for-rapid-development/
它会拦截与正则表达式匹配的网址并让您随心所欲地回应。
There is actually a great mocking library for jquery that does what paykroyd suggests.
https://github.com/appendto/jquery-mockjax
http://enterprisejquery.com/2010/07/mock-your-ajax-requests-with-mockjax-for-rapid-development/
It will intercept urls matching a regex and let you respond with whatever you want.
实现此目的的一种方法是将 JQuery ajax 函数替换为我们自己的函数,该函数将根据您的需要返回数据,而无需访问服务器。像这样的东西:
One way to do this would be to replace the JQuery ajax function with our own that will return data however you want without going to a server. Something like: