builderx 2.7.9
onLaunch: function() {
//#ifdef APP-PLUS
// 设置UI模式为浅色
plus.nativeUI.setUiStyle('light');
// 推送被点击
plus.push.addEventListener('click', function(msg) {
console.log('-----------push--msg--:' JSON.stringify(msg))
uni.showModal({
title: '-----------push--msg--:',
content: JSON.stringify(msg)
})
}, true)
// 透传消息
plus.push.addEventListener('receive', function(msg){
console.log('-----------push--receive--:' JSON.stringify(msg))
uni.showModal({
title: '-----------push--receive--:',
content: JSON.stringify(msg)
})
}, true)
// #endif
}
在onShow中调用会触发,但是会多次触发
0 个回复