Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 ember 绑定 DOM 元素的单击事件。我已经创建了应用程序、模型和控制器,并在 HTML 页面中使用了手柄栏模板。
我解析了 JSON 并将数据加载到视图中,但我不知道如何使用 ember 框架将点击事件绑定到 DOM 元素。
使用{{action}}助手,例如:
{{action}}
<button {{action buttonWasClicked}}>Click Me</button>
然后将 buttonWasClicked 方法添加到您的控制器。
请参阅http://emberjs.com/guides/templates/actions/