我创建了一些模型 App.Markets
在这里我将显示“hello world”。
App.DashboardController = Ember.ObjectController.extend({
test: function(){
var post = App.Markets.createRecord({
name: "NAME123",
created: "CREATED123"
});
post.one('didCreate', function() {
console.log("hello world");
});
post.save();
}
但是当我在 App.Markets 模型中创建新记录时,我看不到此消息。