如何在IntelliJ中导入“ dart:html”?

时间:2019-07-07 23:10:55

标签: intellij-idea dart webstorm dart-html

这是我的第一个在IntelliJ中使用Dart语言的Web程序,但我不断收到此错误(Error: Not found: 'dart:html'),我也不知道为什么。

这是我正在使用的三个文件,它们全部位于lib文件夹中。

main.dart

import 'dart:html';
import 'package:first_one/first_one.dart' as first_one;
import 'package:first_one/addFn.dart';
import 'package:first_one/page.html';

main(List<String> arguments) {
var bouton = (document.querySelector("#btn") as InputElement).value;
print(bouton);
}

page.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title </title>
<script src="main.dart.js" type="application/dart"></script>
</head>
<body>
<input type="text" />
<input type="button" value="click me" id="btn"/>
</body>
</html>

addFn.dart

add(var x,var y)
{
return "the sum is ${x+y}";
}

0 个答案:

没有答案