除了形式化的templateOptions中指定的实际valueProp之外,我还需要访问所选选项的对象属性。我已经像这样定义了字段
vm.model = {};
vm.fields = [
{
className: 'row',
fieldGroup: [
{
className: 'col-xs-6',
key: 'code',
type: 'select2',
templateOptions: {
label: 'Funder',
valueProp: 'code',
labelProp: 'name',
options: [
{code: '123', name: 'Name1', type: 'abc'},
{code: '456', name: 'Name2', type: 'def'},
{code: '789', name: 'Name3', type: 'ghi'}
],
onChange: function($viewValue, $modelValue, $scope) {
for(var i = 0; i < $scope.to.options.length; i++) {
if($viewValue === $scope.to.options[i].code) {
vm.model.type = $scope.to.options[i].type;
break;
} else {
vm.model.type = '';
}
}
}
}
}
]
}
];
我正试图避免为了获得另一个对象属性而编写for循环...
有没有一种简单的方法来获得该type
?
这是html加载正式表格的地方
<formly-form class="col-xs-12" model="vm.model" fields="vm.fields" form="vm.form"></formly-form>
假设我们已选择选项Name2
,我希望能够将def
输入vm.model.type