作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
今天我有一个令人震惊的发现:在 View 上引用的操作是由它们的路由处理的,而不是由引用它的 View 处理。前任:
<a href="#" {{action edit}}>Edit this</a>
edit
action 必须在 Route 中定义,而不是在 View 中。在 View 负责处理此类事件之前我不使用路由器时,我对此感到非常高兴。
最佳答案
将目标设置为 View
<a href="#" {{action edit target="view"}}>Edit this</a>
<a href="#" {{action edit}}>Edit this</a>
关于view - EmberJS : How to handle actions from the View not the Route/Controller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13178441/
我是一名优秀的程序员,十分优秀!