溫馨提示×

溫馨提示×

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

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

微信小程序中如何實(shí)現(xiàn)圖片選擇、上傳到服務(wù)器、預(yù)覽功能

發(fā)布時間:2021-07-05 11:43:52 來源:億速云 閱讀:419 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了微信小程序中如何實(shí)現(xiàn)圖片選擇、上傳到服務(wù)器、預(yù)覽功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

小程序?qū)崿F(xiàn)選擇圖片、預(yù)覽圖片、上傳到開發(fā)者服務(wù)器上

后臺使用的tp3.2 圖片上傳

請求時候的header參考時可以去掉(個人后臺驗(yàn)證權(quán)限使用)

小程序前端代碼:

<view class="section">
 <form bindsubmit="bindFormSubmit">
  <textarea placeholder="請輸入問題內(nèi)容" name="content"/>
  <view class="">
   選擇提問圖片:  <label bindtap="checkimg">點(diǎn)擊選擇圖片</label>
  </view>
  <view class="">
    <image wx:for="{{imglist}}" mode="aspectFit" bindtap="ylimg" data-src="{{item}}"  src="{{item}}"></image>
  </view>
  <button form-type="submit"> 提交 </button>
 </form>
</view>

小程序js代碼:

data: {
  imglist:[]
 },
/**
  * form提交事件
  */
 bindFormSubmit:function(e){
   self=this
   //圖片
   var imglist = self.data.imglist
   //提問內(nèi)容
   var content=e.detail.value.content;
   if(content==''){
    wx.showToast({
     title: '內(nèi)容不能為空',
     icon: 'loading',
     duration: 1000,
     mask:true
    })
   }
   wx.showLoading({
    title: '正在提交...',
    mask:true
   })
   //添加問題
   wx.request({
    url: 'https://xxxxxxxxxx/index.PHP?g=user&m=center&a=createwt',
    data: {
     content:content
    },
    method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
    header: app.globalData.header, // 設(shè)置請求的 header
    success: function (res) {
     // success
     if(typeof(res.data)=='number'){
      if (imglist != '') {
       //開始插入圖片
       for(var i=0;i<imglist.length;i++){
        //上傳至服務(wù)器
        wx.uploadFile({
         url: 'https://xxxxxxxx/index.php?g=user&m=center&a=upload', //僅為示例,非真實(shí)的接口地址
         filePath: imglist[0],
         name: 'files',
         formData: {
          'wtid': res.data
         },
         header: app.globalData.header,
         success: function (res) {
          if(i>=imglist.length){
           self.setData({
            imglist:[]
           })
           wx.hideLoading();
           wx.showToast({
            title: '提問成功',
            icon: 'success',
            duration: 2000,
            mask: true
           })
           wx.navigateBack({
            delta: 1
           })
          }
         }
        })
       }
       console.log(imglist);
      }else{
       wx.hideLoading();
       wx.showToast({
        title: '提問成功',
        icon: 'success',
        duration: 2000,
        mask: true
       })
       wx.navigateBack({
        delta: 1
       })
      }
     }else{
      wx.hideLoading();
      wx.showToast({
       title: res.data,
       icon: 'loading',
       duration: 1000,
       mask: true
      })
     }
    },
    fail: function (res) {
     self.onLoad();
    }
   })
 },
 //點(diǎn)擊選擇圖片
 checkimg:function(){
   console.log('點(diǎn)擊選擇圖片');
   self=this
   wx.chooseImage({
    count: 9, // 默認(rèn)9
    sizeType: ['original', 'compressed'], // 可以指定是原圖還是壓縮圖,默認(rèn)二者都有
    sourceType: ['album', 'camera'], // 可以指定來源是相冊還是相機(jī),默認(rèn)二者都有
    success: function (res) {
     // 返回選定照片的本地文件路徑列表,tempFilePath可以作為img標(biāo)簽的src屬性顯示圖片
     var tempFilePaths = res.tempFilePaths
     self.setData({
      imglist:tempFilePaths
     })
    }
   })
 },
 //點(diǎn)擊預(yù)覽圖片
 ylimg:function(e){
  wx.previewImage({
   current: e.target.dataset.src,
   urls: this.data.imglist // 需要預(yù)覽的圖片http鏈接列表
  })
 }

php后臺代碼

//圖片上傳

public function upload(){
if(IS_POST){
$upload = new \Think\Upload();// 實(shí)例化上傳類
$upload->maxSize  =   3145728 ;// 設(shè)置附件上傳大小
$upload->exts   =   array('jpg', 'gif', 'png', 'jpeg');// 設(shè)置附件上傳類型
$upload->rootPath =   './Uploads/'; // 設(shè)置附件上傳根目錄
$upload->savePath =   ''; // 設(shè)置附件上傳(子)目錄
// 上傳文件 
$info  =  $upload->upload();
if(!$info) {// 上傳錯誤提示錯誤信息
  $this->error($upload->getError());
}else{// 上傳成功 獲取上傳文件信息
//插入到數(shù)據(jù)庫中
}
}
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“微信小程序中如何實(shí)現(xiàn)圖片選擇、上傳到服務(wù)器、預(yù)覽功能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

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

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

AI