0

从今天开始,我遇到了 dart2js 的问题,dart2js 没有任何错误就结束了,但是当我在浏览器(Chrome)上启动我的 web 应用程序时,控制台发送此错误“未捕获的类型 'Mi' 不是类型的子类型' IF'"
但是在 Dartium 上运行时,没有错误。我不是真的喜欢 JavaScript,所以我不知道如何进一步调查。

我的应用程序部署在那里:
5.231.68.247/comprachicos/index.html 有错误的页面是:
5.231.68.247/comprachicos/jeu.html

我的资源在 Github 上: https ://github.com/eagleofdeath13/Comprachicos/tree/master/web

先谢谢了

4

1 回答 1

0

当我在 Dartium 中运行它时,它也会导致异常。

在你的 jeu.html 你有

<input id="nextPageButton" type="button"/>

在你的 main.dart 你有:

ButtonElement b = querySelector("#nextPageButton");

所以 Dart 中的错误信息是:

Exception: type 'InputElement' is not a subtype of type 'ButtonElement' of 'b'.

在您的 html 或您的中使用button-tag来解决此问题。InputElementmain.dart

于 2013-11-01T22:30:12.997 回答