如何使用 sortProperties: ['lastName']

2023-11-30

我想对由 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
})

索引.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>

感谢布拉德利·普里斯特为了回答这个问题。使用this在模板中就可以解决问题。

索引.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>
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何使用 sortProperties: ['lastName'] 的相关文章

随机推荐