AngularDart Github仓库中有组件加载(https://github.com/dart-lang/angular/blob/master/doc/component_loading.md)的文档,它建议导入组件的模板文件(生成),然后访问该模板上的属性,您只需获取组件的名称并附加NgFactory对它。
import 'foo.template.dart' as ng;
void doSomething() {
ng.FooComponentNgFactory;
// ^^^^^^^^^
}
但我的IDE(IntelliJ)无法看到foo.template.dart,因为它还没有生成并给我警告,然后它也对FooComponentNgFactory
一无所知。由于Dart是动态的,这一切都在运行时运行,但它在我的IDE中留下了警告/错误,我不想养成不得不忽视的习惯,整个事情对我来说就像代码味道。
我还可以通过使用ComponentResolver获取工厂,而不需要使用生成的模板文件或NgFactory
。我能看到的唯一缺点是它是async
方法,在我看来这不是问题。
@Component(selector: 'some-component', template: '')
class SomeComponent {
SomeComponent(this._resolver);
ComponentResolver _resolver;
Future doSomething() async {
ComponentFactory factory = await _resolver.resolveComponent(FooComponent);
}
}
在查看ComponentResolver的文档时,我认为没有任何理由不使用它(https://webdev.dartlang.org/api/angular/angular/ComponentResolver-class)。
为什么这不是获得ComponentFactory的可接受方式?我是否在使用NgFactory
做错了什么,或者我需要小心使用我遗漏的ComponentResolver
?
答案 0 :(得分:1)
我们不想使用解析器有两个原因:
树摇是最重要的原因。