uniapp 系统消息的接受和ios透传进行数据推送到消息栏

uniapp 系统消息的接受和ios透传进行数据推送到消息栏,第1张

//监听系统通知栏消息点击事件

plus.push.addEventListener("click", function(msg) {
	//plus.nativeUI.alert(JSON.stringify(msg));
	//逻辑处理
}, false);

//监听接收透传消息事件

plus.push.addEventListener("receive", function(msg) {
	//plus.nativeUI.alert(JSON.stringify(msg));
	//receiveData(msg, '2');
}, false);

let receiveData = function(msg,num) {
	if(uni.getSystemInfoSync().platform == 'ios') {
		if (msg.type == "receive") {  
			//创建本地消息,发送的本地消息也会被receive方法接收到,
			plus.push.createMessage(msg.content, JSON.stringify(msg), {title: msg.title});  
		}  
	} 
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/993620.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存