我已按照为 DART 设置 web_components 的说明进行操作。页面中的此代码段给我带来了问题:
import 'package:web_components/component_build.dart';
import 'dart:io';
void main() {
build(new Options().arguments, ['web/app.html']);
}
当我尝试运行时,这是我收到的错误:
dart --enable-checked-mode --package-root=C:\Users\John Jelinek\dart\ build.dart
无法打开文件:C:\Users\John Jelinek\dart\web_components/component_build.dart'file:///C:/Users/John Jelinek/Documents/dart/webComponents/build.dart':错误:第 1 行 pos 1:库处理程序导入'package:web_components/component_build.dart'失败;^
我不知道为什么它试图在C:\Users\John Jelinek\dart
项目存在时找到参考C:\Users\John Jelinek\Documents\dart
。顺便说一句,我使用的是 Windows 7 Home Premium 64 位。确保我的 pub 包引用适当位置的最佳方法是什么?
注意:我发现其他人有类似的问题,但这些答案都不适合我。