chooseAvatar (){
let _this=this
wx.chooseImage({
success (res) {
console.log(res)
const tempFilePaths = res.tempFilePaths
_this.setState({
logo:tempFilePaths[0]
})
// wx.uploadFile({
// url: ‘http://small-wind-php.bayou-tech.cn/img/’, //仅为示例,非真实的接口地址
// filePath: tempFilePaths[0],
// name: ‘file’,
// formData: {
// ‘user’: ‘test’
// },
// success (res){
// const data = res.data
// console.log(res)
// //do something
// }
// })
}
})
}