显示通知很容易
function spawnNotification(theBody,theIcon,theTitle) {
var options = {
body: theBody,
icon: theIcon
}
var n = new Notification(theTitle,options);
}
如何将其发送到特定设备(通过 firebase-messaging 接收的令牌)。是否有to
参数,如果有,我应该把它放在哪里?
显示通知很容易
function spawnNotification(theBody,theIcon,theTitle) {
var options = {
body: theBody,
icon: theIcon
}
var n = new Notification(theTitle,options);
}
如何将其发送到特定设备(通过 firebase-messaging 接收的令牌)。是否有to
参数,如果有,我应该把它放在哪里?