EmberJS正在加载子记录

uelo1irk  于 2022-11-23  发布在  其他
关注(0)|答案(1)|浏览(200)

我正在尝试加载一个帖子的回复列表(一个帖子有很多回复)。感觉不对,因为我没有回复的路由或控制器(我通过posts_show controller中的函数创建回复)。我打算在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}}

访问该帖子的回复。这是正确的方式吗?我觉得这不是因为我在控制器中为帖子创建了一个回复。

n53p2ov0

n53p2ov01#

在你的帖子把手模板中,你可以这样做

{{#each post in controller}}
  {{#each response in post.responses}}
    {{response.response_content}}
  {{/each}}
{{/each}}

只需确保上面模板的控制器是ArrayController

相关问题