saveVideoToPhotosAlbum
解释: 保存视频到系统相册。需要用户授权。
参数: Object
Object参数说明:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
filePath | String | 是 | 视频文件路径,可以是临时文件路径也可以是永久文件路径。 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例:
- swan.saveVideoToPhotosAlbum({
'filePath': 'bdfile://xxx',
success: function (res) {
console.log(res);
},
fail: function (err) {
console.log('错误码:' + err.errCode);
console.log('错误信息:' + err.errMsg);
}
});