小程序
小游戏
企业微信
微信支付
扫描小程序码分享
请教各位大神
6 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
这个upload方法需要返回一个promise
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
uplaodFile(files){
const that = this;
const params = { path: 'door_api_face_through', file: files.tempFilePaths[0] }
// 返回promise
return new Promise((resolve, reject) => {
wx.uploadFile({
url: api.uploader,
filePath: files.tempFilePaths[0],
name: 'file',
header:{
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': `Bearer ${token}`,
},
formData: params,
success(res) {
const data = JSON.parse(res.data)
if(data.errorCode === 0){
that.setData({
files: [{url: data.data}],
status: false
})
resolve('success')
}else {
wx.showToast({
title: data.errorMessage,
icon: 'none'
reject('error')
}
请汶,你最后是怎样解决的呢?我也遇到了这个问题
我也遇到了这个问题,感觉要放弃这个组件了,找了好多资料都不明白感觉自己封装一个应该都要写出来
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
能提供下代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)么
这种格式的https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
打开了es6转es5吗
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
这个upload方法需要返回一个promise
uplaodFile(files){
const that = this;
const params = { path: 'door_api_face_through', file: files.tempFilePaths[0] }
// 返回promise
return new Promise((resolve, reject) => {
wx.uploadFile({
url: api.uploader,
filePath: files.tempFilePaths[0],
name: 'file',
header:{
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': `Bearer ${token}`,
},
formData: params,
success(res) {
const data = JSON.parse(res.data)
if(data.errorCode === 0){
that.setData({
files: [{url: data.data}],
status: false
})
resolve('success')
}else {
wx.showToast({
title: data.errorMessage,
icon: 'none'
})
that.setData({
status: false
})
reject('error')
}
}
})
})
},
请汶,你最后是怎样解决的呢?我也遇到了这个问题
我也遇到了这个问题,感觉要放弃这个组件了,找了好多资料都不明白感觉自己封装一个应该都要写出来
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
能提供下代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)么
这种格式的https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
打开了es6转es5吗