如何使用vee-validate验证多个文件表单字段?

时间:2018-04-16 10:56:17

标签: vue.js single-page-application vee-validate

我有一个多文件选择表单字段,我使用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[]

enter image description here

1 个答案:

答案 0 :(得分:0)

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

{{1}}