我已经在这里发布了我的代码。
单击添加按钮时,我正在尝试在模型中创建新记录,但这里添加的是空白记录。
savecontact: function(){
App.Person.createRecord({
fname: this.get('firstName'),
lname: this.get('lastName'),
contactype: 1
});
this.get('store').commit();
},
谁能告诉我为什么 createRecord 添加空白记录?