提问人:Priya Ganesan 提问时间:11/16/2023 更新时间:11/16/2023 访问量:27
Angular 升级到 16 会从 AppModule 中抛出许多未知元素错误
Angular upgrade to 16 throws many unknown elements errors from AppModule
问:
我已将我的项目从 Angular 15 升级到 16。在此之后,对于许多未知错误,编译错误。尝试了许多解决方案,例如添加模式:[CUSTOM_ELEMENTS_SCHEMA,NO_ERRORS_SCHEMA],但仍然错误。
error NG8002: Can't bind to 'ngModel' since it isn't a known property of 'ui-switch'.
1. If 'ui-switch' is an Angular component and it has 'ngModel' input, then verify that it is part of this module.
2. If 'ui-switch' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
一个星期以来一直有这个错误,没有任何线索导致这些错误。 基本上,AppModule 中声明的组件会引发这些错误。 但是当我在SharedModule中声明这些错误时,错误就消失了 使用相同的 AppModule,该项目在 Angular 15 上运行良好。
答: 暂无答案
评论