- app-onLauch函數(shù)處理通知點(diǎn)擊回調(diào)
const _self = this;
const _handlePush = function(message) {
let id = '';
if (message.payload && message.payload.ospAbutmentOrderId) {
id = message.payload.ospAbutmentOrderId;
}
if (id) {
uni.navigateTo({
url: '/pages/order-det/order-det?id=' + id
});
}
};
plus.push.addEventListener('click', _handlePush);
plus.push.addEventListener('receive', _handlePush);
- 1,app在線時(shí)
此時(shí)走的是個(gè)推服務(wù)器處理發(fā)送數(shù)據(jù)赊时,動作選擇找開應(yīng)用內(nèi)特定頁面
intent:#Intent;launchFlags=0x04000000;package=uni.UNI9FE065C;component=uni.UNI9FE065C%2Fio.dcloud.PandoraEntry;S.UP-OL-SU=true;S.payload=%7BospAbutmentOrderId%3A%20'1636530831026049024'%7D;end
1679467387277.jpg
- 2,app離線時(shí)
走的是配置的廠商推送,首先可在開發(fā)者中心-消息推送-故障排查中檢查歸屬AppId划提,如果不存在說明廠商推送配置有問題崔涂,請先配置好廠商推送后再次打包后檢查。
參數(shù)同上
注意事項(xiàng):
目前華為糊秆、魅族不需要發(fā)布應(yīng)用市場上就可使用離線推送(注:華為離線推送有條數(shù)限制)武福,其他廠商通道需要上架后才能使用
后端使用sdk時(shí),title和content有關(guān)鍵字限制痘番,如通知捉片,提醒平痰,有可能引起離線推送不成功
附: