elementui upload元件 上傳視訊到七牛雲
-
首先,需要獲取Token,需要後端小夥伴配合
後端小夥伴寫好了介面,vue寫個方法獲取,建議使用Promise
/// vue寫獲取token方法
async getPicToken({ commit }) {
try {
const { result } = await request({
url: getTokenURL,
commit,
})
// 這裡為了後去控制流程 => return Promise
return Promise.resolve(result)
} catch (e) {
$message(e.message)
}
},
複製程式碼
-
嘗試版 我們使用七牛雲直接上傳
const file = document.getElementById('file')
const formData = new FormData()
const time = new Date().getTime()
const token = await this.getPicToken()
formData.append('file', file)
formData.append('key', `video${time}`)
formData.append('file', file)
formData.append('token', token)
request({
url: 'http://upload.qiniu.com',
method: 'POST',
data: formData,
}).then(res => {
console.log(res)
})
複製程式碼
我們獲取了token打通了上傳 但是,上傳後檔案讀取出問題,我們換個思路,直接用elementui upload元件
-
正式版 使用upload
<el-upload
ref="upload"
action="http://upload.qiniup.com"
:on-success="handleAvatarSuccess"
:before-upload="beforeAvatarUpload"
:auto-upload="true"
:limit="1"
:data="form"
>
<el-button slot="trigger" size="small" type="primary">選取檔案</el-button>
</el-upload>
複製程式碼
上傳url我這裡是
http://upload.qiniup.com
不同的用不同的url 文件地址
-
上傳在before-upload前需要獲取token
async beforeAvatarUpload(file) {
const fileType = file.type
const current = new Date().getTime()
const key = `video_${current}` // key為上傳後檔名 必填
const isLt20M = file.size / 1024 / 1024 < 20 // 算出檔案大小
this.fileSize = file.size // 儲存檔案大小
if (!isLt20M) { // 這裡我們限制檔案大小為20M
this.$message.error('最大隻能上傳20M!')
this.$ref.upload.abort()
return isLt20M
}
if (fileType !== 'video/mp4') { // 限制檔案型別
this.$ref.upload.abort()
this.$message.error('只能上傳MP4格式視訊!')
return false
}
try {
const token = await this.getPicToken()
this.form = {
key,
token,
}
return true
} catch (error) {
return error
}
},
複製程式碼
before-upload 如果返回false或者 返回promise reject會終止,但是實測還是會呼叫七牛運上傳,不過沒有token和資料也能接受
這裡一直出現一個問題:上傳到七牛雲一直報400錯誤
懷疑是非同步搞得鬼
-
改成按鈕點選才上傳到七牛雲
auto-upload:false
submitUpload() {
this.$refs.upload.submit()
},
複製程式碼
還是出問題 懷疑是token慢了 在頁面一載入的時候獲取token 還是不對
查了半天終於發現 一定要在data寫form //this is !important
-
基本完成,但是還有點小瑕疵
上傳如果不符合要求 還會顯示上傳進度
解決辦法:在beforeAvatarUpload return前 this.$ref.upload.abort() 可以中斷上傳
文件說clearFiles不能用 實測可用 為了穩定 還是使用abort
-
上傳搞定,接下來就可以愉快的把連結給後端小夥伴儲存在資料庫使用了
後續:
萬惡的產品還要加圖片上傳 而且加只能上傳一張的限制 文件中說是使用limit 我們在元件裡使用limit=1 發現還是有上傳的按鈕
這裡我們通過css的辦法解決
<el-upload
:class="{hide:!isShowUpload}"
ref="upload"
action="http://upload.qiniup.com"
:on-success="handleAvatarSuccess"
:before-upload="beforeAvatarUpload"
:auto-upload="true"
:limit="1"
:accept="'image/*'"
:data="form"
list-type="picture-card"
>
<i class="el-icon-plus"></i>
<!-- <el-button v-show="isShowUpload" slot="trigger" size="small" type="primary"></el-button> -->
<!-- <el-button style="margin-left: 10px;" size="small" type="success" @click="submitUpload">上傳到伺服器</el-button> -->
</el-upload>
<style lang='less'>
.hide .el-upload--picture-card {
display: none;
}
</style>
複製程式碼
這裡我們操作不到按鈕 但是我們發現它有el-upload--picture-card這個class
所以在el-upload 加個hide class :class="{hide:!isShowUpload}" 可以解決
注:在vue有個小問題,一般我們在style裡會寫scoped 上面寫法會不生效,需要去除scoped