声明字段时,我可以ngModelAttrs
为该字段指定,例如:
{
key: 'confirmName',
name: 'confirmName',
type: 'input',
templateOptions: {
type: 'text',
label: 'Confirm Name',
equalsValidationMessage: 'Does not match name'
},
ngModelAttrs: {
equals: {attribute: 'equals'}
},
expressionProperties: {
'templateOptions.equals': 'model.name'
}
}
我想添加equals
到标准模型属性列表中,就像min
, max
,minlength
等是标准的一样。