admin管理员组文章数量:1345029
I implemented web push notifications. Notification is ing but I want to play custom notification sound that I added but that sound is not working default system window sound is ing I want to play this sound. I added in code to let me know why this notification sound is not playing recive
self.addEventListener('push', async function (event) {
const data = event.data.json();
console.log(data);
const title = 'Sound Notification';
const options = {
sound: '../public/messageNotification.mp3',
};
try {
registration.showNotification(title, options);
} catch (e) {
registration.showNotification(title, options);
}
});
I implemented web push notifications. Notification is ing but I want to play custom notification sound that I added but that sound is not working default system window sound is ing I want to play this sound. I added in code to let me know why this notification sound is not playing recive
self.addEventListener('push', async function (event) {
const data = event.data.json();
console.log(data);
const title = 'Sound Notification';
const options = {
sound: '../public/messageNotification.mp3',
};
try {
registration.showNotification(title, options);
} catch (e) {
registration.showNotification(title, options);
}
});
Share
Improve this question
edited Aug 14, 2022 at 7:33
asked Aug 4, 2022 at 4:04
user12302978user12302978
1
- we can use hook useRef and play once we received event: myAudio.current.play() – Sonu Sindhu Commented Aug 15, 2022 at 13:18
4 Answers
Reset to default 6 +25I think you can use HTMLAudioElement for his purpose. For example:
let sound: HTMLAudioElement;
sound = new Audio();
sound.src = '../public/messageNotification.mp3';
sound.load();
sound.play();
We need to take a look what registration.showNotification
does, but if it is working correctly and the sound is still not playing, it might be because modern browsers block autoplay in some situations.
For example, Chrome has this autoplay policy. Firefox and Safari might have slightly different policies.
In these cases, you might need to find workarounds for each browser, or you can instruct users to always enable autoplay for your site. In Chrome 104, you do this by clicking on the lock icon (next to the URL), select Site settings
, then under Sound
select Allow
You cannot. Web push notifications are received by browsers. Browsers do not allow custom sounds for notifications.
const song = new Audio("url");
song.play(); // to play the audio
本文标签: javascripthow to play a custom sound when web push notification receivedStack Overflow
版权声明:本文标题:javascript - how to play a custom sound when web push notification received - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743802589a2541591.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论