我正在开发一个应用程序,以便在数据库更新时接收 toast 通知,但我希望服务器仅将通知推送给一个特定用户,而不是全部。
有什么办法吗?
function update(item, user, request) {
request.execute({
success: function () {
// Write to the response and then send the notification in the background
request.respond();
push.mpns.sendToast(item.channel,
{
text1:"Sent from cloud!"
},
{
success: function(pushResponse) {
console.log("Sent push:", pushResponse);
}
});
}
});
}