EmberJS,Helpers和ComputedProperty

时间:2016-06-14 08:46:36

标签: ember.js helper computed-properties

我有一个 Helper ,它接收一个元素数组,并根据第一个返回一些其他数组。

{{#each (sorted-strings myStrings) as |string|}}
  {{string}}
{{/each}}

Helper 的实现可能类似于:

// app/helpers/sorted-strings.js
import Ember from 'ember';

export function sortedStrings(params/*, hash*/) {
  return params[0].sort();
}

export default Ember.Helper.helper(sortedStrings);

Helper 正常工作,但如果原始myString数组发生更改,则更改不会影响已呈现的列表。

如何组合 ComputedProperty 的行为和 Helper 的结果?

3 个答案:

答案 0 :(得分:3)

使用notifyPropertyChange()通知助手数组已更改。我认为帮助者有一个对数组的引用,并且不知道它的内容或长度已经改变

喜欢这个

actions: {
    add() {
     this.get('myStrings').pushObject('testing');
     this.notifyPropertyChange('myStrings');
    }
  }

我更新了Twiddle - 这是新链接https://ember-twiddle.com/31dfcb7b208eb1348f34d90c98f50bbb?openFiles=controllers.application.js%2C

答案 1 :(得分:1)

经过多次努力之后,我才发现正确的解决方案是声明组件而不是 Helper 。这样我就可以显式声明一个 Computed Property 来观察 myStrings 数组中的变化:

// app/components/sorted-strings.js
export default Ember.Component.extend({
  myStrings: null,
  sortedMyStrings: Ember.computed('myStrings', function() {
    return this.get('myStrings').sort();
  });
});

// app/templates/components/sorted-strings.hbs
{{#each sortedMyStrings as |string|}}
  {{string}}
{{/each}}

// template
{{sorted-strings myStrings=myStrings}}

答案 2 :(得分:-1)

将计算属性传递给帮助程序应该可以正常工作。看看这个twiddle

也许您的计算属性未正确更新。