Angular2 Dart 构建给出 "The selector "demo-app“不匹配任何元素”错误

Angular2 Dart build gives "The selector "demo-app" did not match any elements" error

我正在将现有的 angular2 ts 库移植到 Dart。 在 Dartium 中一切正常,但在构建应用程序后 Chrome 中不会 运行。

我收到 "The selector "demo-app“不匹配任何元素”错误。

不确定如何调试,任何帮助将不胜感激!

代码请见https://github.com/laagland/ng2-dart-pagination

- dart_to_js_script_rewriter

应该是最后一个变形金刚
同时将此设置添加到 Angular 转换器

 - angular2:
platform_directives: 'package:angular2/common.dart#CORE_DIRECTIVES'

有关示例,请参阅 https://github.com/kwalrath/angular.io/blob/d87fb0995aafe5da1c2be708986d74828b65d55c/public/docs/_examples/forms/dart/pubspec.yaml

您应该尽量避免在浏览器应用程序中使用镜像,因为它会导致代码膨胀。我没有检查你所有的代码,但我看到了 @MirrorsUsed 注释。如果您需要反射,请改用 reflectable 包。