构建失败 - 检查导入 - Dart Angular 教程 - angular_tour_of_heroes - 第 2 部分
Build failed - Check imports - Dart Angular Tutorial - angular_tour_of_heroes - part 2
在学习教程时 - Angular-dart tutorial - Tour of Heroes - part 2
在 Windows 10 中使用 IntelliJ IDEA,在使用 chrome 时,出现以下错误 -
[SEVERE] build_web_compilers|entrypoint on web/main.dart (cached):
Unable to find modules for some sources, this is usually the result of either a
bad import, a missing dependency in a package (or possibly a dev_dependency
needs to move to a real dependency), or a build failure (if importing a
generated file).
Please check the following imports:
import 'package:angular_app/app_component.css.shim.dart' as import0; from angular_app|lib/app_component.template.dart at 12:1
[SEVERE] Failed after 1.3s
Serving web on http://localhost:53323
我已经检查了很多次并且我已经替换了所有 - 5 个文件 - 即
lib/app_component.css, lib/app_component.dart, lib/app_component.html, lib/src/hero.dart & lib/src/mock_heroes.dart
来自 Review the app structure 但我仍然收到上述错误 & -
我找不到任何 app_component.template.dart
也无法使用 IntelliJ 在路径中查找 (Ctrl+Shift+F)
找到导入的 package:angular_app/app_component.css.shim.dart
或 shim
的任何实例
我试过删除构建和重建。
我还使用 windows 包管理器重新安装了 dart 2.1.0,并在 IntelliJ IDEA Settings/Dart 中相应地更改了 dart-sdk 的位置,暂时如此我收到 dart-sdk 错误,但已修复。
这是我第一次在 stacksoverflow 上提问,但我已经检查了类似的问题,无法解决该问题。
构建失败的最可能原因是未找到 stylesUrls 文件。这可能是因为该数组中的名称与文件系统中的名称不匹配,或者不是文件系统中的预期位置。
为了确认,我从头开始,下载了 quickstart-master.zip 以获取项目结构。
并一直按照步骤完成您卡住的步骤。
在执行这些步骤时,我唯一一次能够生成该错误是在创建文件之前将 styleUrls: ['app_component.css'],
添加到 app_component.dart
时。
我也一样:
[SEVERE] build_web_compilers|entrypoint on test/app_test.dart.browser_test.dart:
Unable to find modules for some sources, this is usually the result of either a
bad import, a missing dependency in a package (or possibly a dev_dependency
needs to move to a real dependency), or a build failure (if importing a
generated file).
Please check the following imports:
import 'package:angular_app/app_components.css.shim.dart' as import0;
from angular_app|lib/app_component.template.dart at 12:1
创建 css 文件后,错误消失,一切正常。
我完成了您要完成的整个步骤,并且我的应用程序运行良好。
然后我像你一样做了并从步骤中复制了每个文件并用它替换了我的工作,仍然有效。
所以确认我的直觉,我更改了 css 文件的名称,并收到相同的错误。
关于 app_component.template.dart
该文件由 dart 自动生成,可以在您的项目中的 .dart_tool/build/generated/angular_app/lib
下找到
我有一个非常相似的问题。我 运行 webdev build
然后 webdev serve
就把它修好了。
在学习教程时 - Angular-dart tutorial - Tour of Heroes - part 2
在 Windows 10 中使用 IntelliJ IDEA,在使用 chrome 时,出现以下错误 -
[SEVERE] build_web_compilers|entrypoint on web/main.dart (cached):
Unable to find modules for some sources, this is usually the result of either a
bad import, a missing dependency in a package (or possibly a dev_dependency
needs to move to a real dependency), or a build failure (if importing a
generated file).
Please check the following imports:
import 'package:angular_app/app_component.css.shim.dart' as import0; from angular_app|lib/app_component.template.dart at 12:1
[SEVERE] Failed after 1.3s
Serving web on http://localhost:53323
我已经检查了很多次并且我已经替换了所有 - 5 个文件 - 即
lib/app_component.css, lib/app_component.dart, lib/app_component.html, lib/src/hero.dart & lib/src/mock_heroes.dart
来自 Review the app structure 但我仍然收到上述错误 & -
我找不到任何
app_component.template.dart
也无法使用 IntelliJ 在路径中查找 (Ctrl+Shift+F)
找到导入的 我试过删除构建和重建。
我还使用 windows 包管理器重新安装了 dart 2.1.0,并在 IntelliJ IDEA Settings/Dart 中相应地更改了 dart-sdk 的位置,暂时如此我收到 dart-sdk 错误,但已修复。
package:angular_app/app_component.css.shim.dart
或 shim
的任何实例
这是我第一次在 stacksoverflow 上提问,但我已经检查了类似的问题,无法解决该问题。
构建失败的最可能原因是未找到 stylesUrls 文件。这可能是因为该数组中的名称与文件系统中的名称不匹配,或者不是文件系统中的预期位置。
为了确认,我从头开始,下载了 quickstart-master.zip 以获取项目结构。
并一直按照步骤完成您卡住的步骤。
在执行这些步骤时,我唯一一次能够生成该错误是在创建文件之前将 styleUrls: ['app_component.css'],
添加到 app_component.dart
时。
我也一样:
[SEVERE] build_web_compilers|entrypoint on test/app_test.dart.browser_test.dart: Unable to find modules for some sources, this is usually the result of either a bad import, a missing dependency in a package (or possibly a dev_dependency needs to move to a real dependency), or a build failure (if importing a generated file).
Please check the following imports:
import 'package:angular_app/app_components.css.shim.dart' as import0;
from angular_app|lib/app_component.template.dart at 12:1
创建 css 文件后,错误消失,一切正常。 我完成了您要完成的整个步骤,并且我的应用程序运行良好。 然后我像你一样做了并从步骤中复制了每个文件并用它替换了我的工作,仍然有效。 所以确认我的直觉,我更改了 css 文件的名称,并收到相同的错误。
关于 app_component.template.dart
该文件由 dart 自动生成,可以在您的项目中的 .dart_tool/build/generated/angular_app/lib
我有一个非常相似的问题。我 运行 webdev build
然后 webdev serve
就把它修好了。