作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在阅读《 Ember.js入门指南》,但我使用的是v1.0.0-rc.6.3,而不是《指南》中提到的RC3.1。
现在,我进入了有关实现单个待办事项编辑的这一章,但是《指南》中实现的{{action}}处理程序似乎不起作用,因此我的第一个假设是事件的行为已更改。
到目前为止,这是我在JSBin中的代码:http://jsbin.com/ogixej/1/edit
如您所见,当双击待办事项时,控制台中将引发错误:
Uncaught Error: Nothing handled the event 'editTodo'.
最佳答案
由于TodoController
是负责项目的 Controller ,因此需要在TodosController
上对此进行定义,如下所示:
Todos.TodosController = Ember.ArrayController.extend({
itemController: 'todo',
...
});
editTodo
函数。这是您的工作
jsbin。
关于ember.js - 自RC3.1起,{{action}}行为发生了什么变化,从而破坏了ember.js待办事项代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18044581/
我是一名优秀的程序员,十分优秀!