Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该如何处理在 Backbone.Collection 的覆盖解析中作为数组返回的 json?
我将以下内容用于作为对象返回的 json:
解析:函数(响应){ 返回响应。结果; }
当 json 作为数组返回时呢?
默认情况下,Backbone 需要一个数组。如果数组嵌套在一个对象中,您需要parse()像上面所做的那样覆盖。但是,如果响应返回一个数组,您不需要做任何事情(因为这是主干所期望的)。最后,如果您期望两者混合使用(也就是说,有时可能是一个数组,有时可能是一个对象,请参阅 dbaseman 的回答)。
parse()