添加CUSTOM_ELEMENTS_SCHEMA后,我看到:
Uncaught (in promise): ReferenceError: Cannot access 'SomethingModule' before initialization
我在Angular Ionic 4中工作,当我将,schemas: [CUSTOM_ELEMENTS_SCHEMA]
添加到模块定义的@NgModule
部分时,会引发上述错误。
在这种情况下,它是Ionic Tabs中的“ tab”模块。我已将其仅隔离到此更改中。如果我不修改模式,Angular会抱怨我在此页面(选项卡)的模块定义中 NEED CUSTOM_ELEMENTS_SCHEMA。但是,一旦我把它放进去,便会吐出来。
是的,我上面有import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/compiler/src/core';
。
在app.module.ts中执行相同操作并在app.component.html中使用元素时,这不是问题