uni.saveVideoToPhotosAlbum({
filePath: filePath,
success: () => {
uni.showToast({
icon: 'success',
title: 'Success'
})
},
fail: (e) => {
uni.showToast({
title: e.errMsg || 'Error'
})
},
complete: () => {
}
});
0 个回复