uni.uploadFile
将本地资源上传到开发者服务器,客户端发起一个 POST 请求,其中 content-type 为 multipart/form-data。
uni.uploadFile({
url: 'http://192.168.0.252:8900/otctradeservice/pay/add_pay_method', //上传至 服务器的路径url
method: 'POST',
header: {
token: this.$data.usertoken
},
filePath: payUrl, //图片的路径 一般配合 uni.chooseImage
formData: {
userName: this.username,
nickName:this.nickName
},
success: res => {
var rusult = JSON.parse(res.data);
if(rusult.code == 0){
uni.showToast({
icon:'success',
title:'上传成功'
})
}else{
uni.showToast({
icon:'none',
title:rusult.code
})
}
}
});
网友评论