我正在尝试加载帖子的回复列表(帖子有多个回复)。感觉不对,因为我没有响应的路由或控制器(我通过posts_show控制器中的函数创建响应)。我打算在posts.show
中加载帖子的回复列表路由器:
App.Router.map(function() {
this.resource('posts', function() {
this.route('new')
this.route('edit', { path: '/:post_id/edit' })
this.route('show', { path: '/:post_id' })
}),
this.resource('users', function() {
this.route('show', { path: '/:user_id' })
})
});
所以在我的posts.show路线中,我想显示该帖子的所有回复列表,因为帖子有多个回复且响应属于帖子:
App.Post = DS.Model.extend({
title: DS.attr('string'),
post_content: DS.attr('string'),
author: DS.attr('string'),
responses: DS.hasMany('App.Response'),
updated_at: DS.attr('date'),
announcement: DS.attr('boolean')
});
App.Response = DS.Model.extend({
response_content: DS.attr('string'),
response_author: DS.attr('string'),
post: DS.belongsTo('App.Post')
})
我的posts.show模板包含以下内容:
{{#each responses}}
访问该帖子的回复。这是正确的方法吗?我觉得这不是因为我在控制器中为帖子创建了一个响应。
答案 0 :(得分:1)
在你的帖子把手模板中你会做这样的事情
{{#each post in controller}}
{{#each response in post.responses}}
{{response.response_content}}
{{/each}}
{{/each}}
确保上面模板的控制器是一个ArrayController