首页 > 解决方案 > Ember:将模型数据设置为组件值?

问题描述

我试图将模型数据设置为 ember 组件数据。但它没有用。

actions: {
   setValue(modelData, type) {
         // this doesn't work
         this.set('currentType', type);
         this.set('currentData', modelData);
         // this also doesn't work
         this.setProperties({
             currentType: type,
             currentData: modelData
         });

   }
}

并得到了这个错误

在此处输入图像描述

标签: javascriptember.jsember-data

解决方案


推荐阅读