有没有办法通过 jQuery 进行无服务器 JSON 捕获?

发布于 2024-11-02 18:19:32 字数 191 浏览 0 评论 0 原文

我正在开发一个无服务器 Web 应用程序 - 平面文件中的 JS + jQuery、CSS、HTML - 我想发出 GET 请求来获取一些 JSON 数据。

我见过的唯一方法是通过 AJAX-y 方法,它需要使用后端服务器来处理发送 REST 请求...但我没有后端服务器。

我怎样才能做到这一点,所有这些都在 JS 脚本/文件中进行?

I'm working on a serverless web app - JS + jQuery, CSS, HTML in a flat file - and I want to make a GET request to pickup some JSON data.

The only method I've seen is through AJAX-y methods which require the use of a backend server to handle sending the REST request... but I don't have a backend server.

How can I do this, all from within on JS script/file?

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

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

发布评论

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

评论(2

雪花飘飘的天空 2024-11-09 18:19:32

实际上有一个很棒的 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.

东走西顾 2024-11-09 18:19:32

实现此目的的一种方法是将 JQuery ajax 函数替换为我们自己的函数,该函数将根据您的需要返回数据,而无需访问服务器。像这样的东西:

    $.ajax = function(queryParams) {

        // parse the params and create a return data object

        var data = {x: 1};

        queryParams.success(data);

    };

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:

    $.ajax = function(queryParams) {

        // parse the params and create a return data object

        var data = {x: 1};

        queryParams.success(data);

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