我试图在我的网站上显示桌面通知。根据此处的此文档,我可以提供图标图像的 URL。但是我的网站使用的是很棒的字体图标,因此我没有图标的 URL。任何帮助或替代方法将不胜感激
function spawnNotification(theBody,theIcon,theTitle) {
var options = {
body: theBody,
icon: theIcon //this should be a URL can I provide an icon class of a text content?
}
var n = new Notification(theTitle,options);
}