在 Ember 中重复使用模板代码

Re-use template code in Ember

我有几条路线是这样设置的:

this.route('posts', { 'path' : 'blog/' }, function() {
  this.route('category', { 'path' : 'category/:category' });
  this.route('post', { 'path' : '/:permalink' });
});

在 post 上,我显示所有 post,在类别上仅显示此 post 类别的特定类别,在 post 上仅显示一个 post.

所有人都可以重复使用相同的模板来呈现 post 但我不太明白如何完成此操作。

你能告诉我怎么做吗?

我会创建一个 post 部分。请参阅 the guides for more info. 请注意,部分名称必须以下划线开头。