【发布时间】:2017-08-16 20:14:23
【问题描述】:
Vaadin 是否支持 html5 浏览器“桌面通知”?我一直在寻找这个,但找不到任何具体的内容。
我尝试过这样的事情,但没有运气。
JavaScript.getCurrent().execute(
"if (window.webkitNotifications) {" +
"if (window.webkitNotifications.checkPermission() == 0) { // 0 is PERMISSION_ALLOWED" +
" window.webkitNotifications.createNotification(" +
" 'icon.png', 'Notification Title', 'Notification content...');" +
" } else {\n" +
" window.webkitNotifications.requestPermission();" +
" } " +
"} else { " +
" console.log('no notifications')" +
"}");
使用 vaadin 8
【问题讨论】:
标签: vaadin