我假設在Angular-cli tree-shaking exclude component from removal的問題是非常相似,但我似乎無法得到任何東西。Angular2(CLI)樹抖動刪除動態創建的NgModule
本質上,我有一個動態元件工廠,如How can I use/create dynamic template to compile dynamic Component with Angular 2.0?中所述。
當我使用最新的非生產設置的Angular CLI構建它時,它一切正常。但是,一旦我使用生產環境我立即得到在瀏覽器下面的錯誤跟蹤嘗試加載已動態創建內容的頁面時:
EXCEPTION: No NgModule metadata found for 'e'.
ORIGINAL STACKTRACE:
main.dc05ae9….bundle.js:formatted:4731
Error: No NgModule metadata found for 'e'.
at f (vendor.c18e6df….bundle.js:formatted:76051)
at t.resolve (vendor.c18e6df….bundle.js:formatted:20624)
at t.getNgModuleMetadata (vendor.c18e6df….bundle.js:formatted:20169)
at t._loadModules (vendor.c18e6df….bundle.js:formatted:40474)
at t._compileModuleAndAllComponents (vendor.c18e6df….bundle.js:formatted:40462)
at t.compileModuleAndAllComponentsSync (vendor.c18e6df….bundle.js:formatted:40436)
at e.createComponentFactory (main.dc05ae9….bundle.js:formatted:4789)
這裏是我的組件工廠類:
@Injectable()
export class DynamicTypeBuilder {
constructor() {
}
private _cacheOfFactories: {[templateKey: string]: ComponentFactory<any>} = {};
private compiler: Compiler = new JitCompilerFactory([{useDebug: false, useJit: true}]).createCompiler();
public createComponentFactory<COMPONENT_TYPE>(type: any, template: string, additionalModules: any[] = []): Observable<ComponentFactory<COMPONENT_TYPE>> {
let factory = this._cacheOfFactories[template];
if (factory) {
return Observable.of(factory);
}
// unknown template ... let's create a Type for it
let module = this.createComponentModule(type, additionalModules);
// compiles and adds the created factory to the cache
return Observable.of(this.compiler.compileModuleAndAllComponentsSync(module))
.map((moduleWithFactories: ModuleWithComponentFactories<COMPONENT_TYPE>) => {
factory = moduleWithFactories.componentFactories.find(value => value.componentType == type);
this._cacheOfFactories[template] = factory;
return factory;
});
}
protected createComponentModule(componentType: any, additionalModules: any[]): Type<any> {
@NgModule({
imports: [
FormsModule,
ReactiveFormsModule,
BrowserModule,
PipesModule,
...additionalModules
],
declarations: [
componentType
],
schemas:[CUSTOM_ELEMENTS_SCHEMA]
})
class RuntimeComponentModule {
}
return RuntimeComponentModule;
}
}
正被transpiled到
var _ = function() {
function e() {
this._cacheOfFactories = {},
this.compiler = new i.a([{
useDebug: !1,
useJit: !0
}]).createCompiler()
}
return e.prototype.createComponentFactory = function(e, t, n) {
var i = this;
var _ = this._cacheOfFactories[t];
if (_)
r.Observable.of(_);
var a = this.createComponentModule(e, n);
return r.Observable.of(this.compiler.compileModuleAndAllComponentsSync(a)).map(function(n) {
return _ = n.componentFactories.find(function(t) {
return t.componentType == e
}),
i._cacheOfFactories[t] = _,
_
})
}
,
e.prototype.createComponentModule = function(e, t) {
var n = function() {
function e() {}
return e
}();
return n
}
,
e.ctorParameters = function() {
return []
}
,
e
}()
在錯誤消息中的「E」是函數e()
從createComponentModule
WHI ch,正如你所看到的,儘管應該包含@NgModule
內容,但它仍然是空的。
如何動態創建新的NgModule並仍然使用Angular CLI的生產模式?
版本:
Angular2:2.4.8
角CLI:1.0.0-beta.32.3
打字稿:2.1.6
恐怕它不能正常工作。代碼編譯得很好,並且包含在經過轉換的JS中,但是,現在有一個新問題。 Angular在新的'NgModule'中找不到任何自定義導入的模塊。所以在上面的例子'FormsModule'中,可以找到'ReactiveFormsModule'和'BrowserModule',但是'PipesModule'不能。錯誤在'CompileMetadataResolver.getNgModuleMetadata'中。 – Sebastian
其實我有同樣的問題。這似乎在JIT編譯根本不編譯裝飾器。不僅是'RuntimeComponentModule'。如果你讀過編譯過的'main.js',它不包含'PipesModule'的元數據。我會繼續這個tmr。 Thx告訴我角模塊很好。 –
它現在正在工作jit + aot。我正在使用它在v4中使用 –