Formvalidation.io和带索引的数组输入字段

时间:2015-12-23 16:06:46

标签: arrays indexing formvalidation.io

我正在使用Formvalidation.io插件,这与

完美配合
<input type="text" name="url[]" required />

使用以下验证码

'url[]': {
    validators: {
        stringLength: {
             min: 4
        }
    }
 },

但使用“预定义”索引时

<input type="text" name="url[1]" required />

以下验证不起作用

'url[]': {
    validators: {
        stringLength: {
             min: 4
        }
    }
 },

它使用验证码中的固定索引(见下面的代码)

'url[1]': {
    validators: {
        stringLength: {
             min: 4
        }
    }
 },

但是,我正在动态添加具有未知索引的字段。 因此,在验证代码中使用固定索引不是一种选择。

1 个答案:

答案 0 :(得分:1)

我认为您要查找的内容的答案位于this页面,然后是第二部分&#34;输入具有不同名称&#34;。

在那里,您可以在css课程上验证您的行为

 <fieldname>: {
                    //the input css class
                    selector: '<.cssClass>',
                    // The field is placed inside .col-xs-6 div instead of .form-group
                    row: '.col-xs-6',
                    validators: {
                        <your validator>
                    }
                }