在 canJs 中,我们使用 can-value 将元素的值绑定到控制器。
//In controller
scope.attr("parameter") // It will give the value
//In mustache
<input type="text" can-value="parameter"/>
但是我们如何将动态生成的组件的值绑定到控制器?我尝试了以下方式
//In mustache
{{each arrayValues}}
<input type="text" can-value="parameter{{@index}}"/>
{{/each}}
但以下是未定义的
scope.attr("parameter1")