データベースからユーザーのリストに通知を送信したいと考えています。特定のユーザー(ウェブ)へのブラウザ通知の送信
私はプッシュ通知を送信するために解決策を見つけた:
// request permission on page load
document.addEventListener('DOMContentLoaded', function() {
if (!Notification) {
alert('Desktop notifications not available in your browser. Try Chromium.');
return;
}
if (Notification.permission !== "granted")
Notification.requestPermission();
});
function notifyMe() {
if (Notification.permission !== "granted")
Notification.requestPermission();
else {
var notification = new Notification('Notification title', {
icon: 'http://cdn.sstatic.net/stackexchange/img/logos/so/so-icon.png',
body: "Hey there! You've been notified!",
});
notification.onclick = function() {
window.open("https://stackoverflow.com/a/13328397/1269037");
};
}
}
(出典:Chrome desktop notification example)私はそれが特定のユーザーに特定の通知を送信するように設定できますか? テーブルuser_notificationのすべてのユーザに通知を送信するとします。 私はコード内の
<?php
$sqx = "SELECT * FROM `user_js` ";
?>
を使用してみましたが、それは解決しないのいずれか
@JayBlanchard私は同意しません。私はこれを「特定のコーディングの問題」とみなしています。私はちょうどそれを設定する方法を知らない –
私はこれを "広すぎる"とマークしたときに質問にコードはありませんでした。 –
@JayBlanchard ..ご理解いただきありがとうございます。 解決策を見つける手助けをしますか? –