赞
踩
- beforeExport() {
- // 判断有没有存储权限
- var _this = this
- plus.android.requestPermissions(['android.permission.WRITE_EXTERNAL_STORAGE'], function(e) {
- if (e.deniedAlways.length > 0) { //权限被永久拒绝
- // 弹出提示框解释为何需要读写手机储存权限,引导用户打开设置页面开启
- uni.showModal({
- title: '存储权限',
- content: '您拒绝了存储权限,请前往设置-应用开启存储权限。',
- success: function(res) {
- if (res.confirm) {
- // console.log('用户点击确定');
- } else if (res.cancel) {
- // console.log('用户点击取消');
- }
- }
- });
- }
- if (e.deniedPresent.length > 0) { //权限被临时拒绝
- // 弹出提示框解释为何需要读写手机储存权限,可再次调用plus.android.requestPermissions申请权限
- plus.android.requestPermissions(['android.permission.WRITE_EXTERNAL_STORAGE'])
-
- }
- if (e.granted.length > 0) { //权限被允许
- //调用依赖获取读写手机储存权限的代码
- _this.exportFile()
- }
- }, function(e) {
-
- });
- },

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。