📜  当新项目添加到数组中时,它不会刷新 ember 中的列表 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:17.249000             🧑  作者: Mango

代码示例1
App.MyController = Ember.ArrayController.extend({
  results: [],
  init: function(){
    _this = this;
    App.MyModel.find({}).then(function(contents) {
      obj1 = contents.objectAt(0);
      obj1.get('data').hasMany.results.forEach(function(item){
        _this.results.pushObject(item)
      });
    })
    //rest of the code
  }
});