import { MUtils } from '@yl/super-jssdk';
MUtils.saveVideoToPhotosAlbum(optional)
| 参数 | 类型 | 必填 | 作用 |
|---|---|---|---|
| optional | Object | 是 | 必选参数 |
optional
| 参数 | 类型 | 必填 | 作用 |
|---|---|---|---|
| path | string | 是 | 本地视频绝对路径(考虑兼容问题,建议mp4格式视频) |
| 参数 | 类型 | 作用 |
|---|---|---|
| resolve | Function | 成功回调 |
| reject | Function | 失败回调。参数为一个合法的json对象,例如:{"errCode": -1, "errMsg":"some explain of error."}。 |
MUtils.saveVideoToPhotosAlbum({
path: 'images/481976cf31315.jpg'
}).then(res => {
console.log('res', res);
}).catch(err => {
console.log('err', err);
})