我想从插入块形式组件的模板中解雇组件的动作,如下所示:
{{#block-component}} <p> HTML inserted in block form </p> <p> How trigger a action from block-component (not your parent) from this scope? </p> <p {{action 'actionFromBlockComponent'}}> Fire component's action!!! </p> {{/block-component}}
在Ember 1.10.0中启用的块参数可以帮助我吗?或者这种需求是不可能的?
解决方法
使用1.10.0中的新块序列,可以通过执行以下操作来实现:
{{#block-component as |component|}} <p> HTML inserted in block form </p> <p> How trigger a action from block-component (not your parent) from this scope? </p> <p {{action 'actionFromBlockComponent' target=component}}> Fire component's action!!! </p> {{/block-component}}
请注意设置为块参数的操作的目标.
块组件的模板应包含以下内容:
{{ yield this }}
它只是传递组件本身,以用作使用此组件的任何模板的块参数.