위챗 애플릿 개발 (4)

1249 단어 위챗 애플릿

서버에 사진 업로드


그림을 업로드하고 표시하면 서버에 한 장의 사진을 업로드할 수 있습니다.

uploadImg 함수 구현

upload: function () {
    var that = this
    wx.uploadFile({
       url: " ",
       filePath: that.data.img_arr[0], // ( ) ( )
       name: 'content',
       header: {
         "content-type": "multipart/form-data"
       },
       success: function (res) {
         console.log(res)
         //  
         //  path ( url)
         //  JSON , path 
         that.setData({
           img_url: (JSON.parse(res.data)).path
         })
        }
    })
 }

좋은 웹페이지 즐겨찾기