这是我的第一个在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}";
}