uniapp 下 原生检测 通知栏,Android、iOS都支持

2,600次阅读
没有评论

共计 1669 个字符,预计需要花费 5 分钟才能阅读完成。

直接上代码,不多说了

// 原生检测
export default {
	/**
	 * 检测通知栏
	 */
	checkNotification:function(){
		if(plus.os.name.toLowerCase() == 'ios'){
			this.checkIosNotification();
		}
		else{
			this.checkAndroidNotification();
		}
	},
	checkAndroidNotification:function(){
		var main = plus.android.runtimeMainActivity();  
		var pkName = main.getPackageName();  
		var NotificationManagerCompat = plus.android.importClass("android.support.v4.app.NotificationManagerCompat");  
		var packageNames = NotificationManagerCompat.from(main);
		if (packageNames.areNotificationsEnabled()) {  
			// console.log('已开启通知权限');
		}else{  
			uni.showModal({  
				title: '提示',  
				content: '请先打开APP通知权限,否则无法收到消息推送',  
				showCancel: false,  
				success: function (res) {  
					if (res.confirm) {  
						var Intent = plus.android.importClass('android.content.Intent');  
						var intent = new Intent('android.settings.APP_NOTIFICATION_SETTINGS');//可设置表中所有Action字段  
						intent.putExtra('android.provider.extra.APP_PACKAGE', pkName);  
						main.startActivity(intent);  
					}  
				}  
			});  
		} 
	},
	checkIosNotification:function(){
		var UIApplication = plus.ios.import("UIApplication");  
		var app = UIApplication.sharedApplication();  
		var enabledTypes  = 0;  
		if (app.currentUserNotificationSettings) {  
			var settings = app.currentUserNotificationSettings();  
			enabledTypes = settings.plusGetAttribute("types");  
		} else {  
			//针对低版本ios系统  
			enabledTypes = app.enabledRemoteNotificationTypes();  
		}  
		plus.ios.deleteObject(app);  
		if ( 0 == enabledTypes ) {  
			uni.showModal({  
				title: '提示',  
				content: '请先打开APP通知权限,否则无法收到消息推送',  
				showCancel: false,  
				success: function (res) {  
					if (res.confirm) {  
						var UIApplication = plus.ios.import("UIApplication");  
						var NSURL = plus.ios.import("NSURL");  
						var setting = NSURL.URLWithString("app-settings:");  
						var application = UIApplication.sharedApplication();  
						application.openURL(setting);  
						plus.ios.deleteObject(setting);  
						plus.ios.deleteObject(application);  
					}  
				}  
			});  
		}  
	},
}

正文完
 0
Eric chan
版权声明:本站原创文章,由 Eric chan 于2019-06-18发表,共计1669字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。