龍巖易富通網(wǎng)絡(luò)科技有限公司

龍巖小程序開發(fā),龍巖分銷系統(tǒng)

微信小程序wx.uploadFile返回?cái)?shù)據(jù)處理

2020.03.25 | 1739閱讀 | 0條評(píng)論 | 小程序

https://developers.weixin.qq.com/miniprogram/dev/api/network/upload/wx.uploadFile.html


回調(diào)函數(shù)返回?cái)?shù)據(jù)為string型,因此我們需要轉(zhuǎn)換成JSON


語(yǔ)法:var json= JSON.parse(String)


示例:


wx.uploadFile({

      url: url,

      filePath: path,

      name: 'file',

      header: {

           header

      },

      formData: {

        data

      },

      success: function(e) {

        var json= JSON.parse(e.data)  // 此處轉(zhuǎn)換

        console.log(json)

      },

      complete: function(e) {

        console.log(e)

      }

})

贊 (

發(fā)表評(píng)論