在视图中保存模型后,视图中的数据为空。例如,如果我在帖子中添加评论并且在保存帖子后我的视图为空,则不会显示任何数据。为什么?我如何解决问题?
var post = this.get('model');
var comment = this.store.pushObject('comment');
comment.set('text', ' thats some text');
comment.set('created', '11111212');
comment.save().then(function(resolvedComment){
post.get('comments').addObject(resolvedComment);
post.save();
});