一: 我用的是具有拖拽功能的上傳圖片的元件:
<el-form-item label="產品圖片:" prop="pictureUrl" class="itemClass">
<el-upload
class="avatar-uploader"
drag
:http-request="httpRequest"
:action="upUrl"
:show-file-list="false"
:on-success="handleAvatarSuccess">
<img v-if="addRule.pictureUrl" :src="addRule.pictureUrl" class="avatar">
<p v-else style=" height: 20px;line-height: 20px;">
<p v-if="!addRule.pictureUrl" style="font-size: 12px; height: 20px;line-height: 20px; position: absolute; top: 50px; color: #ccc;">點選上傳,或者拖拽圖片至該位置,圖片大小2MB以內</p>
<i class="el-icon-plus avatar-uploader-icon"></i>
</p>
</el-upload>
</el-form-item>
複製程式碼
二: 上傳圖片,因為要限制圖片的格式,還要轉換成base64,所以我用的http-request引數,這個引數可以覆蓋覆蓋預設的上傳行為,可以自定義上傳的實現:
圖片小的話,轉換成base64
可以成功上傳,但是圖片超過1.5M
的轉換成base64
上傳不成功,後臺說我沒有傳給他引數,我後來瞭解了一下,說是超過1.5M
的轉換成base64
有問題,所以我在轉換base64
之前給進行了壓縮。 不說了上完整的程式碼。
httpRequest (options) {
var that = this
// 獲取檔案物件
let file = options.file
//判斷圖片型別
if (file.type == 'image/jpeg' || file.type == 'image/png' || file.type == 'image/JPG') {
var isJPG = true
} else {
isJPG = false
}
// 判斷圖片大小
const isLt2M = file.size / 1024 / 1024 < 2
if (!isJPG) {
this.$message.error('上傳產品圖片只能是 JPG/PNG/JPEG 格式!')
}
if (!isLt2M) {
this.$message.error('上傳產品圖片大小不能超過 2MB!')
}
// 建立一個HTML5的FileReader物件
var reader = new FileReader();
//建立一個img物件
var img = new Image();
let filename = options.filename
if (file) {
reader.readAsDataURL(file)
}
if (isJPG && isLt2M) {
reader.onload = (e) => {
let base64Str = reader.result.split(',')[1]
img.src = e.target.result
// base64地址圖片載入完畢後執行
img.onload = function () {
// 縮放圖片需要的canvas(也可以在DOM中直接定義canvas標籤,這樣就能把壓縮完的圖片不轉base64也能直接顯示出來)
var canvas = document.createElement('canvas');
var context = canvas.getContext('2d');
// 圖片原始尺寸
var originWidth = this.width;
var originHeight = this.height;
// 最大尺寸限制,可通過設定寬高來實現圖片壓縮程度
var maxWidth = 300,
maxHeight = 300;
// 目標尺寸
var targetWidth = originWidth,
targetHeight = originHeight;
// 圖片尺寸超過最大尺寸的限制
if(originWidth > maxWidth || originHeight > maxHeight) {
if(originWidth / originHeight > maxWidth / maxHeight) {
// 更改寬度,按照寬度限定尺寸
targetWidth = maxWidth;
targetHeight = Math.round(maxWidth * (originHeight / originWidth));
} else {
targetHeight = maxHeight;
targetWidth = Math.round(maxHeight * (originWidth / originHeight));
}
}
//對圖片進行縮放
canvas.width = targetWidth;
canvas.height = targetHeight;
// 清除畫布
context.clearRect(0, 0, targetWidth, targetHeight);
// 圖片壓縮
context.drawImage(img, 0, 0, targetWidth, targetHeight);
/*第一個引數是建立的img物件;第二三個引數是左上角座標,後面兩個是畫布區域寬高*/
//壓縮後的base64檔案
var newUrl = canvas.toDataURL('image/jpeg', 0.92);
that.Api.post("/app/uploadPicture",{ fileContent:newUrl})
.then(res => {
that.addRule.pictureUrl = res.data;
})
.catch(err => {
})
}
}
}
},
複製程式碼