来自后端服务的骨干请求 json(跨域)

发布于 2024-12-20 16:30:04 字数 412 浏览 0 评论 0原文

我正在尝试使用backbone从后端服务请求json,我想请求数据然后将其解析为所需的客户端结构,所以我想知道为什么下面的简单示例没有调用后端服务:

Book = Backbone.Model.extend({});
Books = Backbone.Collection.extend({
    model: Book,
        url: 'http://foobar.cloudapp.net/contents',
        parse: function (response) {
            return response;
        }
    });
function default_start_up() {
    var books = new Books();
    books.fetch();
};

I'm trying to request the json from the backend service using backbone, I want to request the data and then parse it into the required client side structure, so I want to know why the following simple example does not make a call out to the backend service:

Book = Backbone.Model.extend({});
Books = Backbone.Collection.extend({
    model: Book,
        url: 'http://foobar.cloudapp.net/contents',
        parse: function (response) {
            return response;
        }
    });
function default_start_up() {
    var books = new Books();
    books.fetch();
};

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

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

发布评论

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

评论(1

衣神在巴黎 2024-12-27 16:30:04

我已经成功使用了这个jquery插件 跨域ajax

I've used this jquery plugin with success cross domain ajax

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