y***@gmail.com
y***@gmail.com
  • 发布:2019-02-03 23:07
  • 更新:2020-06-11 19:10
  • 阅读:2786

UNI-APP 在安卓手机上保存视频失败

分类:uni-app

日志
android:
> 17:37:09.265 下载进度90 at pages/index/index.vue:129
17:37:09.674 下载进度95 at pages/index/index.vue:129
17:37:10.171 下载进度100 at pages/index/index.vue:129
17:37:10.193 下载进度100 at pages/index/index.vue:129
17:37:10.295 下载333 at pages/index/index.vue:108
17:37:10.316 下载成功 at pages/index/index.vue:110
17:37:10.377 saveVideoToPhotosAlbum:fail at pages/index/index.vue:117

ios:
17:35:54.259 [LOG] : 下载进度95
17:35:54.280 [LOG] : 下载进度100
17:35:54.300 [LOG] : 下载333
17:35:54.321 [LOG] : 下载成功
17:35:54.346 [LOG] : save success

部分代码

console.log('下载222')
const downloadTask = uni.downloadFile({
url: this.result,
success: (res) => {
console.log('下载333')
if (res.statusCode === 200) {
console.log('下载成功');
uni.saveVideoToPhotosAlbum({
filePath: res.tempFilePath,
success: function() {
console.log('save success');
uni.showToast({
title: '保存成功!'
})
},
fail: (resp) => {
console.log(resp.errMsg);
uni.showToast({
title: resp.errMsg,
icon: 'none'
})
}
});
}
}
});

2019-02-03 23:07 负责人:无 分享
已邀请:
码农一生

码农一生

最新版本的ios也保存失败了,已经有保存相册的权限。

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

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

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

## 大标题 
### 小标题

斜体 / 粗体 :

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

代码片段 :

``` 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

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

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