element upload 上传图片 单独上传 和 添加formdata中提交的rules验证
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
element upload上传图片rules的验证分为单独提交还是放入formdata中提交
一个前端小菜鸡。若下边的内容有瑕希望告诉我,如果有更好的方法希望告诉我,感谢万分。
这篇文章主要介绍的对el-upload放在表单中提交之前rules的验证。这里的图片是必须提交项如果可以不提交可用常用方法直接提交就可以。
放在formadata表达中提交
<el-form ref="personform" label-position="right" label-width="120px" :model="formLabelAlign" status-icon :rules="rules">
<el-row>
<el-form-item label="简述">
<el-input type="textarea" v-model="formLabelAlign.paper" autocomplete="off"></el-input>
</el-form-item>
</el-row>
<el-row>
<el-form-item prop="file" ref="uploadpic">
<el-upload
style="display:inline-block"
:limit="2"
class="upload-demo"
ref="upload"
action="/hqx/knowledge/importKnowledge"
:before-upload="beforeAvatarUpload"
:auto-upload="false"
:on-change="imageChange"
:on-remove="imageRemove"
>
<el-button slot="trigger" size="small" type="primary" plain>上传</el-button>
</el-upload>
</el-form-item>
</el-row>
</el-form>
<script>
import _ from "lodash";
export default {
data() {
return {
xiugai: false,
formLabelAlign: {
paper: ""
},
images: [],// 图片存储
rules: {
file: [{ required: true, message: "请上传图片", trigger: "change" }]
},
haspic: false // 默认没有传图片
};
},
methods: {
beforeAvatarUpload(file) {
// 文件类型进行判断
const isJPG = /^image\/(jpeg|png|jpg)$/.test(file.type);
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isJPG) {
this.$message.error("上传图片只能是 image/jpeg/png 格式!");
}
if (!isLt2M) {
this.$message.error("上传图片大小不能超过 2MB!");
}
return isJPG && isLt2M;
},
imageChange(file, fileList, name) {//on-change触发
this.images["file"] = fileList;
this.haspic = true;
// 如果上传了就不显示提示图片警告
if (typeof this.images.file != "undefined") {
if (this.images.file.length > 0) {
this.$refs["uploadpic"].clearValidate();
}
}
},
imageRemove(file, fileList, name) { //on-remove触发
//如果images为空了说明并没有提交图片所以需要显示警告
if (typeof this.images.file != "undefined") {
if (this.images.file.length > 0) {
this.$refs["uploadpic"].clearValidate();
} else {
this.$refs["uploadpic"].validate();
this.haspic = false;
}
}
},
confirm() {// 提交绑定的事件
if (this.haspic) {
// 去掉rules中对图片的验证
_.unset(this.rules, ["file"]);
this.$refs["personform"].validate(valid => {
if (valid) {
console.log("说明已经添加了图片直接提交就行了");
const wfForm = new FormData();
wfForm.append( 'dsc',this.formLabelAlign.paper)
Object.entries(this.images).forEach(file => {
file[1].forEach(item => {
wfForm.append('files', item.raw)
wfForm.append(item.name, file[0])
})
})
// 直接提交
} else {
console.log("error submit!!");
return false;
}
});
} else {
// 向rules提价一条对图片的验证。
_.set(this.rules, "file", { required: true, message: "请上传图片", trigger: "change"});
this.$refs["personform"].validate(valid => {
if (valid) {
console.log("说明图片没有提交");
} else {
console.log("error submit!!");
return false;
}
});
}
}
}
};
</script>
下边解释一下每段代码的含义:
1.
imageChange(file, fileList, name) {//on-change触发
this.images["file"] = fileList;
this.haspic = true;
// 如果上传了就不显示提示图片警告
if (typeof this.images.file != "undefined") {
if (this.images.file.length > 0) {
this.$refs["uploadpic"].clearValidate();
}
}
}
if (typeof this.images.file != “undefined”) 这个可加可不加
其中的一个原因是因为要频繁对rules进行操作因为element的el-upload的提示功能在选择了图片的时候并不会对图片的提示进行更改所以只能自己进行操作更改他显示或者隐藏
haspic是用来记录他是否上传了图片 如果上传为true否则为false 在后面提交的时候有用。
2.考虑到用户可能会选择了图片又删除了所以加上了一个判断
如果在提交的时候进行验证或者不考虑用户全部删除显示提示可不加
imageRemove(file, fileList, name) { //on-remove触发
//如果images为空了说明并没有提交图片所以需要显示警告
if (typeof this.images.file != "undefined") {
if (this.images.file.length > 0) {
this.$refs["uploadpic"].clearValidate();
} else {
this.$refs["uploadpic"].validate();
this.haspic = false;
}
}
},
confirm() {// 提交绑定的事件
if (this.haspic) {
// 去掉rules中对图片的验证
_.unset(this.rules, ["file"]);
this.$refs["personform"].validate(valid => {
if (valid) {
console.log("说明已经添加了图片直接提交就行了");
const wfForm = new FormData();
wfForm.append( 'dsc',this.formLabelAlign.paper)
Object.entries(this.images).forEach(file => {
file[1].forEach(item => {
wfForm.append('files', item.raw)
wfForm.append(item.name, file[0])
})
})
// 直接提交
} else {
console.log("error submit!!");
return false;
}
});
} else {
// 向rules提价一条对图片的验证。
_.set(this.rules, "file", { required: true, message: "请上传图片", trigger: "change"});
this.$refs["personform"].validate(valid => {
if (valid) {
console.log("说明图片没有提交");
} else {
console.log("error submit!!");
return false;
}
});
}
}
}
};
提交的时候进行判断。因为没有想到其他的方法所以写了一个变量判断是否在rules加上对图片的判断。因为如果存在对图片的判断。form验证的时候就总是throw error 不能进行提交操作this.$refs[“personform”].validate(valid){}是提交form表单的时的验证
(1)在有图片的时候去掉对图片的验证
(2)在有图片的时候加上对图片的验证
不放在formdata中提交(相对于上一个这个简单多了)
<template>
<div>
<el-form ref="personform" label-position="right" label-width="120px" :model="formLabelAlign" status-icon :rules="rules">
<el-row>
<el-col :span="12">
<el-form-item label="发布人">
<el-input
size="mini"
v-model="formLabelAlign.person"
autocomplete="off"
clearable
:disabled="xiugai"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item label="简述">
<el-input type="textarea" v-model="formLabelAlign.paper" autocomplete="off"></el-input>
</el-form-item>
</el-row>
<el-row>
<el-form-item prop="file" ref="uploadpic">
<el-upload
style="display:inline-block"
:limit="2"
class="upload-demo"
ref="upload"
action="/hqx/knowledge/importKnowledge"
:before-upload="beforeAvatarUpload"
:auto-upload="false"
:on-change="imageChange"
:on-remove="imageRemove"
:on-success="onsuccess"
>
<el-button slot="trigger" size="small" type="primary" plain>上传</el-button>
</el-upload>
</el-form-item>
</el-row>
</el-form>
</div>
</template>
<script>
import _ from "lodash";
export default {
data() {
return {
xiugai: false,
formLabelAlign: {
paper: ""
},
images: [],
rules: {
file: [{ required: true, message: "请上传图片", trigger: "change" }]
},
haspic: false // 默认没有传图片
};
},
methods: {
beforeAvatarUpload(file) {
// 文件类型进行判断
const isJPG = /^image\/(jpeg|png|jpg)$/.test(file.type);
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isJPG) {
this.$message.error("上传图片只能是 image/jpeg/png 格式!");
}
if (!isLt2M) {
this.$message.error("上传图片大小不能超过 2MB!");
}
return isJPG && isLt2M;
},
imageChange(file, fileList, name) {
this.images["file"] = fileList;
this.haspic = true;
// 如果上传了就不显示提示
if (typeof this.images.file != "undefined") {
if (this.images.file.length > 0) {
this.$refs["uploadpic"].clearValidate();
}
}
},
imageRemove(file, fileList, name) {
if (typeof this.images.file != "undefined") {
if (this.images.file.length > 0) {
this.$refs["uploadpic"].clearValidate();
} else {
this.$refs["uploadpic"].validate();
this.haspic = false;
}
}
},
onsuccess(response, file, fileList){
// 如果提交失败将haspic改为false后边的数据就不让他提交
},
confirm() {
if (this.haspic) {
// 去掉rules中对图片的验证
_.unset(this.rules, ["file"]);
this.$refs["personform"].validate(valid => {
if (valid) {
console.log("说明已经添加了图片直接提交就行了");
const wfForm = new FormData();
wfForm.append( 'dsc',this.formLabelAlign.paper)
//直接将wfForm提交就可以
} else {
console.log("error submit!!");
return false;
}
});
} else {
alert('请添加图片之后在提交')
}
}
}
};
</script>
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)