标签: ember.js components publish-subscribe
在一个组件中,我在一个操作中执行this.notifyPropertyChange('foo')。
this.notifyPropertyChange('foo')
对foo的更改确实在组件中被选中,并且更新会自动应用于模板中。
foo
但是,父组件将foo和一个属性传递给子组件, 我希望父组件能够了解子组件中发起的foo更改。
我该怎么做?