桌面通知正文javascript中是否可能显示图标

Nil*_*tam 5 javascript notifications

目前,我需要在桌面通知正文中显示图片,但我不确定是否可以-

notification = new Notification("title", "user1"), {
  icon: baseUrl + '/image/icon.png',
  body: "message"   // here i want add my custom image
});
Run Code Online (Sandbox Code Playgroud)

如果可能的话,我需要实现它的方法。

小智 2

您无法在Notification.body中添加图像,因为根据MDN,body属性仅接受字符串类型