wx.업로드 파일 업로드 방법

1288 단어 소절차
작가: 연소시
안내:wx.uploadFile 방법에 부딪힌 문제

문제

uploadImage:function(e){
        // 1
        var _this = this;
        wx.chooseImage({
                count: 1,
                sizeType: ['original', 'compressed'],
                sourceType: ['album', 'camera'],
        		success: function (res) {
           			 var tempPaths = res.tempFilePaths
            			console.log(tempPaths)
			            wx.uploadFile({
			                    url: app.globalData.myhost+'customer-header?access_token='+app.globalData.itoken,
			                    filePath: tempFilePaths[0],
			                    name: 'uploadFile',
			                    formData: {
			                'userId': app.globalData.iuserId
			            },
			            success: function (res) {
			                // :wx.uploadFile [ ], JSON ,wx.request , 
			                var data = JSON.parse(res.data)  
			                console.log(' ')
			                // :wx.uploadFile this, var _this = this  this 
			                _this.setData({    
			                     headerImageUrl: data.headerImageUrl
			            })
                		console.log(' ')
            }
        })
        }
    })
    }

좋은 웹페이지 즐겨찾기