在Backbone模型中解析提取

时间:2014-11-13 19:46:27

标签: backbone.js model fetch

我正在尝试将响应存储到数组中,现在响应是一个对象,我想在模型中解析响应的数组(userBookList)。我不确定该怎么做,下面是我的代码:

this.books = new Backbone.Model();
this.books.fetch({
    async: false,
    url: user.get('booklist').href
});

我知道我可以设置this.books = this.books.get('userBookList'),但这看起来太难了。需要在第一行解析什么?我已经尝试过解析功能,但它从未被调用过。对不起,我从未使用过fetch。

0 个答案:

没有答案