我正在尝试将输入字段中的数据传递给组件类
这是我的 * 组件类*alpha.js
@tracked choice;
@action next() {
console.log(this.choice);
}
这是我的 * 模板*alpha.hbs
<Input @value={{this.choice}} type="radio" />
<button onclick={{action 'next'}}>Next</button>
到目前为止,它是空返回的。
任何帮助都将不胜感激。谢谢
1条答案
按热度按时间dphi5xsq1#
<Input
组件是为文本输入设计的。对于单选按钮,你需要做一些手工操作。一个简单的方法如下所示:使用此
change
操作: