위챗 애플릿 사진 업로드

2158 단어 위챗 애플릿

위챗 애플릿 사진 업로드

 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(" ")
          }
        });
      }
    })
}

좋은 웹페이지 즐겨찾기