有待考证其准确性

    image.png

    1. // 自定义验证规则
    2. form.verify({
    3. userName: function(value) { //userName为input的name属性
    4. if(value.length != '') {
    5. return '用户名不能为空';
    6. }
    7. },
    8. code: [/(.+){6}$/, '验证码必须是6位'],
    9. pwd: [/(.+){6}$/, '验证码必须是6位']
    10. });