2

これが私のコードです:

{{#collection contentBinding="someArray"}}
  {{#view valueBinding="view.content"}}
    <a>{{view.value}}</a>
  {{/view}}
{{/collection}}

上記のビュータグのクリックイベントを追加したいのですが、どうすればよいですか?私は次の方法を試しましたが、役に立ちませんでした:

{{#collection contentBinding="someArray"}}
  {{#view valueBinding="view.content" clickBinding="someFunction"}}
    <a>{{view.value}}</a>
  {{/view}}
{{/collection}}
4

1 に答える 1

0

をとるビューの関数である、を<a {{action eventHandler target="view"}}>試してください。必要に応じてコンテキストを渡すことができます: 、(の場合は現在のハンドルバーコンテキスト)。これはハンドラーでアクセスできます。eventHandlerevent<a {{action eventHandler this target="view"}}>thisevent.context

于 2012-08-30T14:46:14.497 に答える