我有一个角度实时消息应用程序,我想使用 HTML5 通知。我在控制器中尝试了以下操作:
$rootScope.$on("message_recieved", function(event, data) {
new Notification(data.sender_name, {
body: data.body, icon: data.avatar, dir:'auto'
});
}
和
$rootScope.$on("server_offline", function(event, data) {
new Notification("Offline", {
body: "You are offline. Refresh your page now.", dir:'auto'
});
}
通知未显示。我在这里做错什么了吗?