gpt4 book ai didi

javascript - 将参数从 Ember Handlebars 操作传递到 Controller

转载 作者:行者123 更新时间:2023-11-28 11:38:04 25 4
gpt4 key购买 nike

我想将额外的信息从我的 Handlebars 脚本发送到我的 Controller ;这是我的代码:

<a {{action "resetState" data="state1" }}>reset1 </a>

我无法在 Controller 中检索 state1;如何向后端发送额外的字符串?

最佳答案

The API says您可以传入多个参数。

html 和 Handlebars :

{{officename}} 
<button {{action "actionTest" "hello" "goodbye" officename}}>See parameters through action in the console</button>

Controller :

actionTest: function(a, b, c){
console.log(a);
console.log(b);
console.log(c);
},

See it in action in this jsbin

关于javascript - 将参数从 Ember Handlebars 操作传递到 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13666862/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com