我做了什么 -
模型 -
App.Book = DS.Model.extend({
book_name: DS.attr('string'),
edition: DS.attr('string')
});
路由器 -
App.Router.map(function() {
this.resource('books', function() {
this.route('new');
});
});
App.BooksNewRoute = Ember.Route.extend({
model: function() {
return this.store.createRecord('book');
},
actions: {
save: function() {
this.modelFor('newBook').save();
}
}
});
现在有人能帮帮我..如何保存数据?
我收到错误
TypeError: this.modelFor(...) is undefined
this.modelFor('newBook').save();
答案 0 :(得分:0)
很难说出你的行动背景如何。
但是,一个选项是将要保存的对象作为参数传递给此{{action save myBook}}
。
然后你的行动看起来像这样:
App.BooksNewRoute = Ember.Route.extend({
model: function() {
return this.store.createRecord('book');
},
actions: {
save: function(book) {
book.save();
}
}
});
答案 1 :(得分:0)
我认为这应该有效。
App.BooksNewRoute = Ember.Route.extend({
model: function() {
return this.store.createRecord('book');
},
actions: {
save: function() {
this.get('model').save();
}
}
});