溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Vue?vant-ui怎么使用van-uploader實(shí)現(xiàn)頭像上傳功能

發(fā)布時(shí)間:2022-05-21 11:30:15 來源:億速云 閱讀:1699 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Vue vant-ui怎么使用van-uploader實(shí)現(xiàn)頭像上傳功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Vue vant-ui怎么使用van-uploader實(shí)現(xiàn)頭像上傳功能”吧!

效果圖:

Vue?vant-ui怎么使用van-uploader實(shí)現(xiàn)頭像上傳功能

Vue?vant-ui怎么使用van-uploader實(shí)現(xiàn)頭像上傳功能

項(xiàng)目中是使用有贊vant-ui框架實(shí)現(xiàn)的頭像上傳替換功能

代碼布局結(jié)構(gòu): 

<van-row class="sendInfo">
        <van-col span="24" class="flex colorf topInfo p20">
          <!--左邊頭像部分-->
          <van-uploader :after-read="afterCard" :before-read="beforeRead"  accept="image/*" class="arrart"
              :max-size="10240 * 1024" @oversize="onOversize">
              
              <img class="arrart"
                :src=" centerInfo.iconUrl ? $baseImgUrl + centerInfo.iconUrl : require('../../assets/img/touciang.png')" />
              <!-- <van-tag type="danger" class="vip" size="medium">VIP</van-tag> -->
              <div class="personCompany">{{loginType==0?"個(gè)人用戶":"企業(yè)用戶"}}</div>
          </van-uploader>
 
          <!--右邊部分-->
          <div class="ml30">
            <div class="flex rightVip">
              
              <span class="fontSize36 color0 mt20 van-ellipsis">郝先生</span>
              <img :src="vipImg" width="46" height="20" class="mt20"  v-show="centerInfo.memberLevel==1" />
            </div>
            <div class="flex mt30">
              <van-icon class="editIcon vmd mr10" color="#999" name="edit" />
              <div class="fontSize30 color9 personInfo van-multi-ellipsis--l2">
                優(yōu)質(zhì)船主
              </div>
            </div>
          </div>
        </van-col>
</van-row>

樣式:

.flex {
  display: flex;
  width: 100%;
}
.topInfo {
  align-items: center;
  background-color: #fff;
  // border-radius: 24px;
}
.arrart {
  width: 128px;
  height: 128px;
  border-radius: 50%;
}
.personCompany {
  position: absolute;
  top: 100px;
  left: 0px;
  font-size: 0.4rem;
  width: 128px;
  height: 40px;
  text-align: center;
  background: #333440;
  border-radius: 50px;
  color: #ffdd99;
  // padding:0px 6px;
  line-height: 40px;
}
.rightVip {
  width: 552px;
  align-items: center;
}

主要方法:這里用到了封裝的圖片壓縮封裝之后再去上傳圖片this.$imgUpload.imgZip()

//定義存儲(chǔ)對(duì)象
centerInfo: {},
// 限制上傳大小圖片
    onOversize(file) {
      this.$toast("文件大小不能超過 10M");
    },
    // 上傳之前的圖片驗(yàn)證
    beforeRead(file) {
      if (this.$utils.isImage(file.name)) {
        return true;
      } else {
        this.$toast.fail("請(qǐng)上傳圖片格式");
      }
    },
    // 頭像上傳  文件上傳完畢后會(huì)觸發(fā) after-read 回調(diào)函數(shù),獲取到對(duì)應(yīng)的 file 對(duì)象。
    afterCard(file) {
 
      this.$imgUpload.imgZip(file).then(resData => {
        const formData = new FormData();
        formData.append("file", resData);
 
        // 請(qǐng)求接口上傳圖片到服務(wù)器
        uploadImg(formData).then(res => {
 
          if (res.code == 200) {
            this.centerInfo.iconUrl = res.data;
            let params = {
              iconUrl: res.data,
              id: this.id,
              loginType: this.loginType
            };
            updateMineIconUrl(params)
              .then(resImg => {
                if (resImg.code == 200) {
                  this.$toast("頭像修改成功");
                } else {
                  this.$toast(res.msg);
                }
              })
              .catch(error => {});
          } else {
            this.$toast(res.msg);
          }
        });
      });
    },

關(guān)于圖片壓縮方法、拍照上傳的圖片被旋轉(zhuǎn) 90 度問題解決方法 后期會(huì)更新上去

Uploader 在部分安卓機(jī)型上無法上傳圖片?

Uploader 采用了 HTML 原生的 <input type="file /> 標(biāo)簽進(jìn)行上傳,能否上傳取決于當(dāng)前系統(tǒng)和瀏覽器的兼容性。當(dāng)遇到無法上傳的問題時(shí),一般有以下幾種情況:

  • 遇到了安卓 App WebView 的兼容性問題,需要在安卓原生代碼中進(jìn)行兼容,可以參考文末擴(kuò)展知識(shí)點(diǎn)

  • 圖片格式不正確,在當(dāng)前系統(tǒng)/瀏覽器中無法識(shí)別,比如 webp 或 heic 格式。

  • 其他瀏覽器兼容性問題。

擴(kuò)展知識(shí)點(diǎn):安卓10訪問手機(jī)相冊(cè) 有讀寫權(quán)限但是還是訪問不到問題解決方案

安卓10訪問手機(jī)相冊(cè) 有讀寫權(quán)限但是還是訪問不到問題解決方案

原因 安卓10 或者是打包target版本大于等于29的時(shí)候。就算有讀寫sd卡權(quán)限,谷歌依舊有限制。

解決方案1:

把target版本調(diào)整到 29以下

解決方案2:

修改androidmanifest.xml文件 在 <application 標(biāo)簽里再添加一個(gè)屬性
android:requestLegacyExternalStorage=“true”

至于為什么target : 29以下可以呢 是因?yàn)楣雀枘J(rèn)29以下的 這個(gè)屬性自動(dòng)為true
到29開始就要手動(dòng)填。 坑爹的谷歌!!!

到此,相信大家對(duì)“Vue vant-ui怎么使用van-uploader實(shí)現(xiàn)頭像上傳功能”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI