1

我有一个多文件选择表单字段,我正在使用 v-validate 来验证它。我怎样才能验证这种字段?

<input type="file" name="images[]" ref="file" class="txt" v-validate="'required|image|mimes:jpg,png,jpeg'">
<span v-show="errors.has('images')">{{ errors.first('images') }}</span>
<input type="file" name="images[]" ref="file" class="txt" v-validate="'required|image|mimes:jpg,png,jpeg'">
<span v-show="errors.has('images')">{{ errors.first('images') }}</span>

我没有使用多个。相反,我images[]在两个不同的行中使用两种输入类型。

在此处输入图像描述

4

1 回答 1

0

名称应该是“images”而不是“images[]”。我们只需要在应用程序中将图像初始化为空数组

  data: function() {
    return {
      images: []
    }
  },
于 2018-04-17T00:19:23.823 回答