我正在使用架构表单,我正在尝试捕获onChange
事件like it says here,以便保存所选的值。
vm.form = [{
key: 'RelationType',
type: 'select',
fieldHtmlClass: 'validationStyle',
onChange: function (modelValue, form) {
debugger;
console.log("Value is", modelValue);
},
titleMap: JSON.parse(typeList)
}]
但我从未在debugger
函数中点击onChange
,在该函数中,还有另一种方法吗?