我有一个包含模型集合的集合。在提交到服务器之前,我必须获取每个模型并为其设置更多属性。
如何使用骨干做到这一点。?
更新 :
这就是我尝试打印的模型,如果它打印想要尝试使用set
模型的属性,但它给了我uncaught typeerror cannot call method 'each' of undefined
:
covertInvestmentJournal:function(){
this.investmentTransactionsCollection.each(function(model){
console.log(model);
});
}