_wlf
_wlf
  • 发布:2020-10-20 11:31
  • 更新:2020-10-20 11:31
  • 阅读:614

(已解决)推送点击打开APP未触发对应方法

分类:uni-app

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中调用会触发,但是会多次触发

2020-10-20 11:31 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复