gpt4 book ai didi

Android 未在 ionic 应用程序中请求权限

转载 作者:行者123 更新时间:2023-11-29 15:37:59 26 4
gpt4 key购买 nike

我正在构建允许人们发布图片和视频的应用程序,主要是想了解 ionic、cordova、android 等,但由于某种原因,每当我尝试使用 cordova 文件插件打开文件时,它不会如果不询问用户访问存储的权限,代码就会失败并且用户会卡在加载屏幕上。代码非常简单,他们拍摄视频,对其进行转码,然后将转码后的文件上传到 firebase 存储桶。如果我退出应用程序,进入设置->应用程序->我的应用程序->权限,然后手动打开存储权限,它就可以工作。问题是,我需要在运行时或安装时请求用户许可,但事实并非如此。这是代码..

this.media.captureVideo().then(file => {
this.editor.transcodeVideo({
fileUri: file[0].fullPath,
outputFileType: this.editor.OutputFileType.MPEG4,
outputFileName: 'temp_test',
saveToLibrary: false,
height: 800,
width: 800,
maintainAspectRatio: false
}).then(fileUri => {
let pathIndex = fileUri.lastIndexOf('/'),
finalPath = 'file://' + fileUri.substr(0, pathIndex),
name = fileUri.substr(pathIndex + 1, fileUri.length);
this.file.readAsArrayBuffer(finalPath, name).then(file => {
//upload
}).catch(err => { console.log(err); });
});
});

但是,只有当我打开手机上的设置,转到应用程序,然后转到我的应用程序,然后转到权限,然后手动启用存储时,这才有效。有什么方法可以请求 ionic 许可吗?我搜索了又搜索,我能找到的所有答案都是特定于相机的,或者在 Java 中工作,但 ionic 不是 java。谢谢。

最佳答案

有效cordova-plugin-media-capture使用cordova-plugin-file ,所以READ_EXTERNAL_STORAGE必须以编程方式请求许可。

Ionic 提供对 Android Permissions 的 native 支持:

this.androidPermissions.hasPermission(this.androidPermissions.PERMISSION.READ_EXTERNAL_STORAGE)
.then(status => {
if (status.hasPermission) {
this.captureVideo();
} else {
this.androidPermissions.requestPermission(this.androidPermissions.PERMISSION.READ_EXTERNAL_STORAGE)
.then(status =>{
if(status.hasPermission) this.captureVideo();
});
}
}

希望有帮助。

关于Android 未在 ionic 应用程序中请求权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46143238/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com