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(' ')
}
})
}
})
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
위챗 프로그램 개발에서 직면한 몇 가지 사소한 문제를 깊이 있게 분석하다로컬 그림이 표시되지 않으면 개발 도구가 실행되는 것은 문제없지만, 실제 디버깅은 표시되지 않습니다 자세히 관찰한 결과 경로는 문제없다. 문제는 사진 이름이 중국어가 될 수 없다는 것이다. 이를 자모+숫자로 바꾸면 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.