微信小程序 上传图片

微信小程序 上传图片

 upload:function(){
    var that = this
    //选择上传图片
    wx.chooseImage({
      count: 1, // 默认9
      sizeType: ['original', 'compressed'],
      sourceType: ['album', 'camera'],
      success: function (res) {
        console.log(res);
        //上传文件
        wx.uploadFile({
          url: 'http://localhost/tp/index.php/Home/Create/upload', 
          filePath: res.tempFilePaths[0],
          name: 'file',
          formData: {
            'user': 'test'
          },
          success: function (res) {
            var data = res.data

            var path = data.substring(3);       
           var str = 'http://localhost/tp/' + path;
            //console.log(str);
           that.setData({
             background: str,
             path:str
           })

          },
          fail: function () {
            console.log("上传失败")
          }
        });
      }
    })
}

你可能感兴趣的:(微信小程序)