作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,我是ember js的新手。我在模板中的链接到 Action 上传递了 Action 参数(id),但是我没有在 Controller 中获取值。
我的模板代码如下:
index.html:
<script type="text/x-handlebars" data-template-name="search">
{{#each model.results}}
// here i pass id value along with action
{{#link-to 'profile' id action="profileinfo"}}
</script>
App.SearchController = Ember.ObjectController.extend({
id: '',
actions:{
profileinfo: function(id){
// Here i access id value like this
console.log(id);
var id = this.get('id');})
最佳答案
我不明白为什么您使用{{#link-to}}
帮助程序来触发 Controller 上的操作。也许您可以简单地使用{{action}}
帮助器?
如果您尝试以这种方式进行操作,会行得通吗?
<button type="button" {{action "profileinfo" id}}>Click me !</button>
console.log(id);
应该可以得到您的值(value)。
<a>
标签
<a href="#" {{action "profileinfo" id}}>Click me !</a>
关于ember.js - 链接到 Action 参数在ember js中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22827717/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!