在Dart上使用Notification API时出错

时间:2014-05-19 23:46:48

标签: dart dart-html

我已经在JavaScript应用程序上使用了通知,当您需要在需要确认重要内容时不必一直看着应用程序时,它非常有用。我尝试在Dart上复制一些工作,但编译到JS Chrome时会显示引用错误。

您知道它是否会很快为Chrome实施?还是会继续实验?

提前致谢

这是尝试调用Notification API的函数。没有通知行,一切正常,当我添加通知行时,我收到此错误"未捕获的ReferenceError:未定义requestPermission"将代码作为JavaScript运行。 (我正在导入' dart:html')

void revisarInput() {

    if ( valorLogin != '' ) {
        indicador = true;
        _ws.send( Util.formatearJsonSocket( 'loginPwd', { 'pwd': int.parse( valorLogin )}));
    }

    Notification.requestPermission();
}

2 个答案:

答案 0 :(得分:1)

这是dart2js中的一个错误,https://code.google.com/p/dart/issues/detail?id=22483并且已针对Dart 1.9修复。

答案 1 :(得分:0)

此页面显示

https://developer.chrome.com/apps/notifications

  

自Chrome 28以来稳定