0

[编辑]回答[/编辑]

我刚开始使用 Backbone,遇到了一个我无法弄清楚的绊脚石。

我有以下集合,它向我网站上的 JSON-API 发送请求以按类别获取帖子:

Posts.Collections.CategoryPosts = Backbone.Collection.extend({

initialize: function(options) {
    this.id = options.id;

    var intRegex = /^\d+$/;

    if(intRegex.test(this.id)) {
        this.url_querystring = '?id=' + this.id;
    }
    else {
        this.url_querystring = '?slug=' + this.id;
    }
},

url: function() {
    return '/api/core/get_category_posts/' + this.url_querystring;
},

model: Posts.Models.CategoryPost
});

现在,这很有魅力;但问题是;这个返回的 JSON 实际上是:

{
    "status": "ok",
    "count": 10,
    "count_total": 79,
    "pages": 7,
    "category": { ... }
    "posts": [
        { ... },
        { ... },
    ...
    ]
}

因此,当我fetch()在集合上使用的代码尝试将返回分配给各个Post模型时;它只会创建一个。

如何告诉 Backbone 应该使用 JSON 返回中的“post”子对象创建模型?那里似乎真的没有太多关于这个的东西。或者我不知道要搜索什么?

任何帮助都会很棒——最好是朝着正确的方向前进,而不是给出答案。

4

1 回答 1

2

答案是为集合定义一个解析函数:

Posts.Collections.CategoryPosts = Backbone.Collection.extend({

    initialize: function(options) {
        this.id = options.id;

        var intRegex = /^\d+$/;

        if(intRegex.test(this.id)) {
            this.url_querystring = '?id=' + this.id;
        }
        else {
            this.url_querystring = '?slug=' + this.id;
        }
    },

    // Make sure you parse the correct JSON object!
    parse: function(response) {
        return response.posts;
    },

    url: function() {
        return '/api/core/get_category_posts/' + this.url_querystring;
    },

    model: Posts.Models.CategoryPost
});
于 2013-06-23T14:56:56.447 回答