我正在尝试创建一个动态表单,该表单使用从max_points到0的级联中的其他字段的实时数据。
每一行都有一个高低范围,下一个表格的高范围始终是前一个-1的低范围。
我在如何在字段设置中操作模型数据时遇到问题。此外,我对如何在每个字段的范围内访问更大的数据模型感到困惑:
{
type: 'input',
//want to bind this field to the previous index's low_range -1
key: 'high_range',
className: 'col-xs-4',
templateOptions: {
label: 'High Range',
disabled: true
}
controller: function($scope) {
//I have access to the element this corresponds to, but haven't found a way to lookup this element in the larger model array
}
}
理想情况下,第一个元素的高范围是max_points,然后每个元素将引用前一个low_range
答案 0 :(得分:0)
这是否符合您的要求?我不确定你遇到了什么麻烦,但我认为这样做符合你的要求:http://jsbin.com/lidezi/edit?js,console,output