用Vue來實現圖片上傳多種方式

項目中須要上傳圖片可謂是常常遇到的需求,本文將介紹 3 種不一樣的圖片上傳方式,在這總結分享一下,有什麼建議或者意見,請你們踊躍提出來。javascript

沒有業務場景的功能都是耍流氓,那麼咱們先來模擬一個須要實現的業務場景。假設咱們要作一個後臺系統添加商品的頁面,有一些商品名稱、信息等字段,還有須要上傳商品輪播圖的需求。html

咱們就以Vue、Element-ui,封裝組件爲例子聊聊如何實現這個功能。其餘框架或者不用框架實現的思路都差很少,本文主要聊聊實現思路。前端

1.雲儲存

常見的 七牛雲,OSS(阿里雲)等,這些雲平臺提供API接口,調用相應的接口,文件上傳後會返回圖片存儲在服務器上的路徑,前端得到這個路徑保存下來提交給後端便可。此流程處理相對簡單。java

主要步驟

  1. 向後端發送請求,獲取OSS配置數據
  2. 文件上傳,調用OSS提供接口
  3. 文件上傳完成,後的文件存儲在服務器上的路徑
  4. 將返回的路徑存值到表單對象中

代碼範例

咱們以阿里的 OSS 服務來實現,們試着來封裝一個OSS的圖片上傳組件。element-ui

經過element-ui的upLoad組件的 http-request 參數來自定義咱們的文件上傳,僅僅使用他組件的樣式,和其餘上傳前的相關鉤子(控制圖片大小,上傳數量限制等)。canvas

<template>
  <el-upload list-type="picture-card" action="''" :http-request="upload" :before-upload="beforeAvatarUpload">
    <i class="el-icon-plus"></i>
  </el-upload>
</template>

<script> import {getAliOSSCreds} from '@/api/common' // 向後端獲取 OSS祕鑰信息 import {createId} from '@/utils' // 一個生產惟一的id的方法 import OSS from 'ali-oss' export default { name: 'imgUpload', data () { return {} }, methods: { // 圖片上傳前驗證 beforeAvatarUpload (file) { const isLt2M = file.size / 1024 / 1024 < 2 if (!isLt2M) { this.$message.error('上傳頭像圖片大小不能超過 2MB!') } return isLt2M }, // 上傳圖片到OSS 同時派發一個事件給父組件監聽 upload (item) { getAliOSSCreds().then(res => { // 向後臺發請求 拉取OSS相關配置 let creds = res.body.data let client = new OSS.Wrapper({ region: 'oss-cn-beijing', // 服務器集羣地區 accessKeyId: creds.accessKeyId, // OSS賬號 accessKeySecret: creds.accessKeySecret, // OSS 密碼 stsToken: creds.securityToken, // 簽名token bucket: 'imgXXXX' // 阿里雲上存儲的 Bucket }) let key = 'resource/' + localStorage.userId + '/images/' + createId() + '.jpg' // 存儲路徑,而且給圖片改爲惟一名字 return client.put(key, item.file) // OSS上傳 }).then(res => { console.log(res.url) this.$emit('on-success', res.url) // 返回圖片的存儲路徑 }).catch(err => { console.log(err) }) } } } </script>
複製代碼

傳統文件服務器上傳圖片

此方法就是上傳到本身文件服務器硬盤上,或者雲主機的硬盤上,都是經過 formdata 的方式進行文件上傳。具體的思路和雲文件服務器差很少。後端

主要步驟

  1. 設置服務器上傳路徑、上傳文件字段名、header、data參數等
  2. 上傳成功後,返回服務器存儲的路徑
  3. 返回的圖片路徑存儲到表單提交對象中

代碼示例

此種圖片上傳根據element-ui的upLoad組件只要傳入後端約定的相關字段便可實現,若使用元素js也是生成formdata對象,經過Ajax去實現上傳也是相似的。api

這裏只作一個簡單的示例,具體請看el-upload組件相文檔就能實現跨域

<template>
  <el-upload ref="imgUpload" :on-success="imgSuccess" :on-remove="imgRemove" accept="image/gif,image/jpeg,image/jpg,image/png,image/svg" :headers="headerMsg" :action="upLoadUrl" multiple>
    <el-button type="primary">上傳圖片</el-button>
  </el-upload>
</template>

<script> import {getAliOSSCreds} from '@/api/common' // 向後端獲取 OSS祕鑰信息 import {createId} from '@/utils' // 一個生產惟一的id的方法 import OSS from 'ali-oss' export default { name: 'imgUpload', data () { return { headerMsg:{Token:'XXXXXX'}, upLoadUrl:'xxxxxxxxxx' } }, methods: { // 上傳圖片成功 imgSuccess (res, file, fileList) { console.log(res) console.log(file) console.log(fileList) // 這裏能夠得到上傳成功的相關信息 } } } </script>
複製代碼

圖片轉 base64 後上傳

有時候作一些私活項目,或者一些小圖片上傳可能會採起前端轉base64後成爲字符串上傳。當咱們有這一個需求,有一個商品輪播圖多張,轉base64編碼後去掉data:image/jpeg;base64,將字符串以逗號的形勢拼接,傳給後端。咱們如何來實現呢。數組

1.本地文件如何轉成 base64

咱們經過H5新特性 readAsDataURL 能夠將文件轉base64格式,輪播圖有多張,能夠在點擊後立馬轉base64也可,我是在提交整個表單錢一次進行轉碼加工。

具體步驟

  1. 新建文件封裝 異步 轉base64的方法
  2. 添加商品的時候選擇本地文件,選中用對象保存整個file對象
  3. 最後提交整個商品表單以前進行編碼處理

在這裏要注意一下,由於 readAsDataURL 操做是異步的,咱們如何將存在數組中的若干的 file對象,進行編碼,而且按照上傳的順序,把編碼後端圖片base64字符串儲存在一個新數組內呢,首先想到的是promise的鏈式調用,但是不能併發進行轉碼,有點浪費時間。咱們能夠經過循環 async 函數進行併發,而且排列順序。請看 methodssubmitData 方法

utils.js

export function uploadImgToBase64 (file) {
  return new Promise((resolve, reject) => {
    const reader = new FileReader()
    reader.readAsDataURL(file)
    reader.onload = function () {  // 圖片轉base64完成後返回reader對象
      resolve(reader)
    }
    reader.onerror = reject
  })
}
複製代碼

添加商品頁面 部分代碼

<template>
  <div>
      <el-upload ref="imgBroadcastUpload" :auto-upload="false" multiple :file-list="diaLogForm.imgBroadcastList" list-type="picture-card" :on-change="imgBroadcastChange" :on-remove="imgBroadcastRemove" accept="image/jpg,image/png,image/jpeg" action="">
        <i class="el-icon-plus"></i>
        <div slot="tip" class="el-upload__tip">只能上傳jpg/png文件,且不超過2M</div>
      </el-upload>
      <el-button>submitData</el-button> 
  </div>
</template>

<script> import { uploadImgToBase64 } from '@/utils' // 導入本地圖片轉base64的方法 export default { name: 'imgUpload', data () { return { diaLogForm: { goodsName:'', // 商品名稱字段 imgBroadcastList:[], // 儲存選中的圖片列表 imgsStr:'' // 後端須要的多張圖base64字符串 , 分割 } } }, methods: { // 圖片選擇後 保存在 diaLogForm.imgBroadcastList 對象中 imgBroadcastChange (file, fileList) { const isLt2M = file.size / 1024 / 1024 < 2 // 上傳頭像圖片大小不能超過 2MB if (!isLt2M) { this.diaLogForm.imgBroadcastList = fileList.filter(v => v.uid !== file.uid) this.$message.error('圖片選擇失敗,每張圖片大小不能超過 2MB,請從新選擇!') } else { this.diaLogForm.imgBroadcastList.push(file) } }, // 有圖片移除後 觸發 imgBroadcastRemove (file, fileList) { this.diaLogForm.imgBroadcastList = fileList }, // 提交彈窗數據 async submitDialogData () { const imgBroadcastListBase64 = [] console.log('圖片轉base64開始...') // 併發 轉碼輪播圖片list => base64 const filePromises = this.diaLogForm.imgBroadcastList.map(async file => { const response = await uploadImgToBase64(file.raw) return response.result.replace(/.*;base64,/, '') // 去掉data:image/jpeg;base64, }) // 按次序輸出 base64圖片 for (const textPromise of filePromises) { imgBroadcastListBase64.push(await textPromise) } console.log('圖片轉base64結束..., ', imgBroadcastListBase64) this.diaLogForm.imgsStr = imgBroadcastListBase64.join() console.log(this.diaLogForm) const res = await addCommodity(this.diaLogForm) // 發請求提交表單 if (res.status) { this.$message.success('添加商品成功') // 通常提交成功後後端會處理,在須要展現商品地方會返回一個圖片路徑  } }, } } </script>

複製代碼

這樣本地圖片上傳的時候轉base64上傳就完成了。但是輪播圖有能夠進行編輯,咱們該如何處理呢?通常來講商品增長頁面和修改頁面能夠公用一個組件,那麼咱們繼續在這個頁面上修改。

編輯時咱們首先會拉取商品原有數據,進行展現,在進行修改,這時候服務器返回的圖片是一個路徑 http://xxx.xxx.xxx/abc.jpg 這樣,當咱們新增一張圖片的仍是和上面的方法同樣轉碼便可。但是後端說,沒有修改的圖片也要賺base64轉過來,好吧那就作把。這是一個在線連接 圖片,不是本地圖片,怎麼作呢?

2. 在線圖片轉base64

具體步驟

  1. utils.js 文件添加在線圖片轉base64的方法,利用canvas
  2. 編輯商品,先拉取原來的商品信息展現到頁面
  3. 提交表單以前,區分在線圖片仍是本地圖片進行轉碼

utils.js

export function uploadImgToBase64 (img) {
  return new Promise((resolve, reject) => {
    function getBase64Image (img) {
      const canvas = document.createElement('canvas')
      canvas.width = img.width
      canvas.height = img.height
      const ctx = canvas.getContext('2d')
      ctx.drawImage(img, 0, 0, canvas.width, canvas.height)
      var dataURL = canvas.toDataURL()
      return dataURL
    }

    const image = new Image()
    image.crossOrigin = '*'  // 容許跨域圖片
    image.src = img + '?v=' + Math.random()  // 清除圖片緩存
    image.onload = function () {
      resolve(getBase64Image(image))
    }
    image.onerror = reject
  })
}
複製代碼

添加商品頁面 部分代碼

<template>
  <div>
      <el-upload ref="imgBroadcastUpload" :auto-upload="false" multiple :file-list="diaLogForm.imgBroadcastList" list-type="picture-card" :on-change="imgBroadcastChange" :on-remove="imgBroadcastRemove" accept="image/jpg,image/png,image/jpeg" action="">
        <i class="el-icon-plus"></i>
        <div slot="tip" class="el-upload__tip">只能上傳jpg/png文件,且不超過2M</div>
      </el-upload>
      <el-button>submitData</el-button> 
  </div>
</template>

<script> import { uploadImgToBase64, URLImgToBase64 } from '@/utils' export default { name: 'imgUpload', data () { return { diaLogForm: { goodsName:'', // 商品名稱字段 imgBroadcastList:[], // 儲存選中的圖片列表 imgsStr:'' // 後端須要的多張圖base64字符串 , 分割 } } }, created(){ this.getGoodsData() }, methods: { // 圖片選擇後 保存在 diaLogForm.imgBroadcastList 對象中 imgBroadcastChange (file, fileList) { const isLt2M = file.size / 1024 / 1024 < 2 // 上傳頭像圖片大小不能超過 2MB if (!isLt2M) { this.diaLogForm.imgBroadcastList = fileList.filter(v => v.uid !== file.uid) this.$message.error('圖片選擇失敗,每張圖片大小不能超過 2MB,請從新選擇!') } else { this.diaLogForm.imgBroadcastList.push(file) } }, // 有圖片移除後 觸發 imgBroadcastRemove (file, fileList) { this.diaLogForm.imgBroadcastList = fileList }, // 獲取商品原有信息 getGoodsData () { getCommodityById({ cid: this.diaLogForm.id }).then(res => { if (res.status) { Object.assign(this.diaLogForm, res.data) // 把 '1.jpg,2.jpg,3.jpg' 轉成[{url:'http://xxx.xxx.xx/j.jpg',...}] 這種格式在upload組件內展現。 imgBroadcastList 展現原有的圖片 this.diaLogForm.imgBroadcastList = this.diaLogForm.imgsStr.split(',').map(v => ({ url: this.BASE_URL + '/' + v })) } }).catch(err => { console.log(err.data) }) }, // 提交彈窗數據 async submitDialogData () { const imgBroadcastListBase64 = [] console.log('圖片轉base64開始...') this.dialogFormLoading = true // 併發 轉碼輪播圖片list => base64 const filePromises = this.diaLogForm.imgBroadcastList.map(async file => { if (file.raw) { // 若是是本地文件 const response = await uploadImgToBase64(file.raw) return response.result.replace(/.*;base64,/, '') } else { // 若是是在線文件 const response = await URLImgToBase64(file.url) return response.replace(/.*;base64,/, '') } }) // 按次序輸出 base64圖片 for (const textPromise of filePromises) { imgBroadcastListBase64.push(await textPromise) } console.log('圖片轉base64結束...') this.diaLogForm.imgs = imgBroadcastListBase64.join() console.log(this.diaLogForm) if (!this.isEdit) { // 新增編輯 公用一個組件。區分接口調用 const res = await addCommodity(this.diaLogForm) // 提交表單 if (res.status) { this.$message.success('添加成功') } } else { const res = await modifyCommodity(this.diaLogForm) // 提交表單 if (res.status) { this.$router.push('/goods/goods-list') this.$message.success('編輯成功') } } } } } </script>

複製代碼

結語

至此經常使用的三種圖片上傳方式就介紹完了,轉base64方式通常在小型項目中使用,大文件上傳仍是傳統的 formdata或者 雲服務,更合適。可是 經過轉base64方式也使得,在前端進行圖片編輯成爲了可能,不須要上傳到服務器就能預覽。主要收穫仍是對於異步操做的處理。歡迎你們提出更好的方式或建議。

相關文章
相關標籤/搜索