rule 是函数??
export class Form extends Component {
constructor(props) {
super(props);
}
// 正则合集
rule() {
return {
required: function(val) {
return /^S+$/gi.test(val);
},
mobile: function(val) {
return /^(13[0-9]|14[57]|15[012356789]|17[0678]|18[0-9])d{8}$/.test(val);
}
}
}
}
rule 是属性??
export class Form extends Component {
constructor(props) {
super(props);
// 正则合集
this.rule = {
required: function(val) {
return /^S+$/gi.test(val);
},
mobile: function(val) {
return /^(13[0-9]|14[57]|15[012356789]|17[0678]|18[0-9])d{8}$/.test(val);
}
}
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…