# 上传图片大小格式的限制
# 快速导航
# 背景
在一些后台管理系统中,对于用户上传图片大小的限制,往往需要做处理,限制图片的尺寸和大小
# 具体实例(限制图片大小500K以及1020*1080)
# 实例代码如下所示
<template>
<div class="uploader">
<el-upload
class="avatar-uploader"
action="https://jsonplaceholder.typicode.com/posts/"
:show-file-list="false"
:on-success="handleAvatarSuccess"
:before-upload="beforeAvatarUpload">
<img v-if="imageUrl" :src="imageUrl" class="avatar">
<i v-else class="el-icon-plus avatar-uploader-icon uploader-icon"></i>
</el-upload>
</div>
</template>
<script>
export default {
name: "uploadImg",
data() {
return {
imageUrl: ''
};
},
methods: {
handleAvatarSuccess(res, file) {
console.log(res);
console.log(file);
if (res.code != "20000") {
this.$message({
type: "error",
message: res.msg,
});
return false;
}
},
beforeAvatarUpload(file) {
console.log(file);
const isLt500K = file.size / 1024 < 500; // 限制图片的大小500K
if (!isLt500K) {
this.$message({
message: "图片大小不能超过500K",
type: "error",
});
}
const isSize = new Promise(function (resolve, reject) {
const img = new Image();
const _URL = window.URL || window.webkitURl;
img.onload = function () {
file.width = img.with; // 图片的宽度
file.height = img.height; // 图片高度
const valid = img.width === 1920 && img.height === 1080; // 上传图片尺寸判定
valid ? resolve() : reject(new Error("error"));
};
img.src = _URL.createObjectURL(file);
}).then(
() => {
return file;
},
() => {
// 提示图片大小尺寸
this.$message({
message: "上传图片尺寸必须为1920*1080",
type: "error",
});
return Promise.reject(new Error("error"));
}
);
return isLt500K && isSize;
},
// 预览图片击文件列表中已上传的文件时的钩子
handlePictureCardPreview() {
console.log("预览图片");
},
// 文件列表移除文件时的钩子
handleRemove() {
console.log("移除文件");
},
// 对上传列表进行控制
hanleOnChange() {},
},
};
</script>
<style lang="scss" scoped>
.avatar-uploader .el-upload {
border: 1px dashed #d9d9d9;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
}
.avatar-uploader .el-upload:hover {
border-color: #409EFF;
}
.avatar-uploader-icon {
font-size: 28px;
color: #8c939d;
width: 178px;
height: 178px;
line-height: 178px;
text-align: center;
}
.avatar {
width: 178px;
height: 178px;
display: block;
}
</style>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115