发现一个桌面通知项目:
只要调用这么一段 js 代码,就可以发送通知给桌面? Push.create("Hello world!", { body: "How's it hangin'?", icon: 'icon.png', timeout: 4000, onClick: function () { window.focus(); this.close(); } });
Push.create("Hello world!", { body: "How's it hangin'?", icon: 'icon.png', timeout: 4000, onClick: function () { window.focus(); this.close(); } });
另外,求推荐简单的桌面通知方案。
message_bus
这个是浏览器(for 客户端)的呀。
后端发送消息,不管是用 Action Cable 还是 message_bus,当消息到了客户端,再调用 push.js 就可以了。