我有这个jsfiddle。除了我无法通过提交评论表单来创建新评论外,一切正常。当我提交表单时,控制台显示 undefined。我希望实现的是获取现有帖子,然后创建属于该帖子的评论。所以这是事情的流程,用户将单击帖子,然后单击特定的帖子标题以显示它,然后单击添加评论以对该帖子发表评论。需要注意的是,此时点击添加评论按钮将返回undefined。
代码的相关部分带有addComment和save方法。
EmBlog.CommentNewController = Em.ObjectController.extend({
needs: ['postsShow'],
isAddingNew: false,
addComment: function(body){
post = this.get('controllers.postsShow.model');
store = post.get('transaction');
store.createRecord(EmBlog.Comment, {body: body});
this.set('isAddingNew', true);
},
save: function(){
console.log(this.store.commit());
}
});
**车把模板中的相关部分
<script type='text/x-handlebars' data-template-name='comment/new'>
{{#if controller.isAddingNew}}
<form {{action save on='submit'}}>
{{view Ember.TextArea valueBinding="body" placeholder="body"}}
<button type="submit"> save comment </button>
</form>
{{/if}}
<br/>
<div>
<button {{action addComment}} {{bindAttr disabled="isAddingNew"}}>
Add Comment
</button>
</div>
</script>
评论表单是通过“posts/show template”使用渲染提交的
<script type="text/x-handlebars" data-template-name="posts/show">
<p> Comments</p>
{{render 'comment/new' comments}}
</script>