我想对一个由ember-data提取的数组或用户进行排序。我无法弄清楚将数组排序为lastName
。以下代码不起作用。我该如何解决?
app.js
App.UsersRoute = Ember.Route.extend({
model: function() {
return App.User.find();
}
});
App.UsersController = Ember.ArrayController.extend({
sortProperties: ['lastName'],
sortAscending: true
})
的index.html
<script type="text/x-handlebars" data-template-name="users">
<table class='table table-striped'>
{{#each model itemController="user"}}
<tr>
<td>{{lastName}}</td>
</tr>
{{/each}}
</table>
</script>
答案 0 :(得分:8)
感谢Bradley Priest回答这个问题。在模板中使用this
可以解决问题。
<强>的index.html 强>
<script type="text/x-handlebars" data-template-name="users">
<table class='table table-striped'>
{{#each this itemController="user"}}
<tr>
<td>{{lastName}}</td>
</tr>
{{/each}}
</table>
</script>