1
I次のコードを持っている:Emberでアクションを渡すと、yieldはどのように動作しますか?
コンポーネントテンプレートを
{{#link-to "user.profile" account.id disabled=user.online}}
{{yield}}
{{/link-to}}
テンプレート
{{#my-component data=x}}
<button> MY BUTTON </button>
{{/my-component}}
私は別のテンプレートでコンポーネントを使用して、私が持って得られた要素が欲しいです行動。私はあなたがこのように使うことができると読んだことがありますが、私は実際にその動作を把握することはできません。
{{#link-to "user.profile" account.id disabled=user.online}}
{{yield (action "showModal")}}
{{/link-to}}
誰でもこの問題を解明できますか?