1***@qq.com
1***@qq.com
  • 发布:2021-03-06 21:18
  • 更新:2021-03-08 15:23
  • 阅读:908

uniCloud.uploadFile 体验版上传图片到阿里云,微信开发者工具可以,真机体验版一直没返回?

分类:uniCloud

uni.chooseImage({
count: 1,
success: async (res) => {
let fileExtension = res.tempFilePaths[0].substring(res.tempFilePaths[0].lastIndexOf('.') + 1);
const filePath = res.tempFilePaths[0],
fileName = res.tempFiles[0].name || (new Date().getTime() + '.' + fileExtension)
this.$utils.showLoading('上传中')

// !!!!! 卡在这里,一直到loading上传中,result一直没有返回
在微信开发者工具和浏览器是可以上传成功,没任何问题,但是用真机测试就不行了,调试好久不知道为啥,还是体验版不给上传啥的????

复制代码                    const result = await uniCloud.uploadFile({  
                        filePath: filePath,  
                        cloudPath: fileName  
                    });  
                    if (result.success) {  
                        this.$api.setUserAvatar({  
                            avatar: result.fileID  
                        }).then(res => {  
                            uni.hideLoading()  
                            this.userInfo.avatar = result.fileID  
                            this.$forceUpdate()  
                            if (res.code === 0) {  
                                this.$utils.toast(res.msg)  
                            }  
                        })  
                    }  
                }  
            });
2021-03-06 21:18 负责人:无 分享
已邀请:
DCloud_uniCloud_WYQ

DCloud_uniCloud_WYQ

该问题目前已经被锁定, 无法添加新回复

  • 标题 / 粗斜体
  • 代码片段
  • 超链接 / 图片 / 视频
  • 列表 / 引用

文章内容较多时,可以用标题分段 :

## 大标题 
### 小标题

斜体 / 粗体 :

**粗体** 
*斜体*
***粗斜体***

代码片段 :

``` javascript
代码片段
```

超链接 :

[链接文字](链接地址) 例: [百度](http://www.baidu.com)

图片 :

![图片说明](图片地址) 例: ![百度logo](http://www.baidu.com/img/bdlogo.gif)

视频 :

!![视频说明](视频地址) 例: !![优酷视频](http://youku.com)

有序列表 :

1. 123
2. 123
3. 123

无序列表 :

- 123
- 123
- 123

引用 : ( 双回车后结束引用 )

> 引用内容
引用内容
引用内容