バックボーンコレクション内にデータを設定するには:
var someList = ['a', 'b', 'c'];
collection.reset({models:someList});
すべてのプロパティmodel
を呼び出すことなく、これを行う方法はありますか?set()
例
var pop_star = {
first_name: "Stacey",
last_name: "Ferguson"
}
// There is no "reset()" function on a model, but is there something like it?
model.reset(pop_star);
ありがとう!