- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将最新的 Angular Material 与 Angular 9 一起使用,但我遇到了以下问题
这是我的 app.modul.ts
import { NgModule } from '@angular/core';
import { CommonModule, CurrencyPipe } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { HttpClientJsonpModule } from '@angular/common/http';
import { HttpClientModule } from '@angular/common/http';
import { ModalModule } from 'ngx-bootstrap/modal';
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
import { CollapseModule } from 'ngx-bootstrap/collapse';
import { TabsModule } from 'ngx-bootstrap/tabs';
import { NgxPaginationModule } from 'ngx-pagination';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { ServiceProxyModule } from '@shared/service-proxies/service-proxy.module';
import { SharedModule } from '@shared/shared.module';
import { HomeComponent } from '@app/home/home.component';
import { AboutComponent } from '@app/about/about.component';
// tenants
import { TenantsComponent } from '@app/tenants/tenants.component';
import { CreateTenantDialogComponent } from './tenants/create-tenant/create-tenant-dialog.component';
import { EditTenantDialogComponent } from './tenants/edit-tenant/edit-tenant-dialog.component';
// roles
import { RolesComponent } from '@app/roles/roles.component';
import { CreateRoleDialogComponent } from './roles/create-role/create-role-dialog.component';
import { EditRoleDialogComponent } from './roles/edit-role/edit-role-dialog.component';
// users
import { UsersComponent } from '@app/users/users.component';
import { CreateUserDialogComponent } from '@app/users/create-user/create-user-dialog.component';
import { EditUserDialogComponent } from '@app/users/edit-user/edit-user-dialog.component';
import { ChangePasswordComponent } from './users/change-password/change-password.component';
import { ResetPasswordDialogComponent } from './users/reset-password/reset-password.component';
// layout
import { HeaderComponent } from './layout/header.component';
import { HeaderLeftNavbarComponent } from './layout/header-left-navbar.component';
import { HeaderLanguageMenuComponent } from './layout/header-language-menu.component';
import { HeaderUserMenuComponent } from './layout/header-user-menu.component';
import { FooterComponent } from './layout/footer.component';
import { SidebarComponent } from './layout/sidebar.component';
import { SidebarLogoComponent } from './layout/sidebar-logo.component';
import { SidebarUserPanelComponent } from './layout/sidebar-user-panel.component';
import { SidebarMenuComponent } from './layout/sidebar-menu.component';
import { ChatComponent } from './chat/chat.component';
import { Chat2Component } from './chat2/chat2.component';
import { CitizenInterestsComponent } from './citizen-interests/citizen-interests.component';
import {MAT_CHECKBOX_CLICK_ACTION, MatCheckbox} from '@angular/material/checkbox';
@NgModule({
declarations: [
AppComponent,
HomeComponent,
AboutComponent,
// tenants
TenantsComponent,
CreateTenantDialogComponent,
EditTenantDialogComponent,
// roles
RolesComponent,
CreateRoleDialogComponent,
EditRoleDialogComponent,
// users
UsersComponent,
CreateUserDialogComponent,
EditUserDialogComponent,
ChangePasswordComponent,
ResetPasswordDialogComponent,
// layout
HeaderComponent,
HeaderLeftNavbarComponent,
HeaderLanguageMenuComponent,
HeaderUserMenuComponent,
FooterComponent,
SidebarComponent,
SidebarLogoComponent,
SidebarUserPanelComponent,
SidebarMenuComponent,
ChatComponent,
Chat2Component,
CitizenInterestsComponent
],
imports: [
CommonModule,
FormsModule,
ReactiveFormsModule,
HttpClientModule,
HttpClientJsonpModule,
ModalModule.forChild(),
BsDropdownModule,
CollapseModule,
TabsModule,
AppRoutingModule,
ServiceProxyModule,
SharedModule,
NgxPaginationModule,
MatCheckbox
],
providers: [],
entryComponents: [
// tenants
CreateTenantDialogComponent,
EditTenantDialogComponent,
// roles
CreateRoleDialogComponent,
EditRoleDialogComponent,
// users
CreateUserDialogComponent,
EditUserDialogComponent,
ResetPasswordDialogComponent
],
})
export class AppModule {}
最佳答案
我找到了解决方案 here
我是导入 Matcheckbox 而不是 MatCheckboxModule
在此之前,我运行了这个命令 npm ci 我不知道这是否会影响但我所做的。
关于angular-material - MatCheckbox 没有被 ngcc 正确处理,或者与 Angular Ivy 不兼容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62445723/
当我尝试使用 ivy 编译时出现此错误: ERROR in The ngcc compiler has changed since the last ngcc build. Please comple
运行命令 npm run ngcc抛出错误 'ngcc' is not recognized as an internal or external command .package.json {
我有一个旧的 Angular 应用程序,我已经从 Angular 9 升级到了 Angular 11。(从 Angular 2 开始,这些年来它有许多稳定的升级) 我的问题是,ngcc没有运行 ng
在将依赖项升级到 Angular 9(并执行必要的代码更改)后构建应用程序会引发错误: Compiling @angular/animations : es2015 as esm2015 Compil
我正在尝试构建和服务我的项目。它工作正常,我从 git 更新它,然后突然当我提供它时,有一个错误说“另一个进程,ID 为 29800,目前正在运行 ngcc。” 我重试了“npm i”,也重新启动了
有了 Angular 9 和它的新编译引擎 IVY,我的 CI 构建时间大大增加了。这当然是因为ngcc在许多模块上运行。 例如 Compiling @angular/core : es2015 as
在上次更新后的 Visual Studio Code 编辑器中,我在状态栏中看到以下文本: Angular: Running ngcc for project d:/..../tsconfig.spe
如果以下问题对您来说很幼稚,请原谅: 我经历了由 angular 9 开发的多个项目,其中大多数在 package.json 中有以下行作为 posinstall 脚本。"postinstall":
我刚刚将 Angular cli 和我的一个项目从 7.0.7 升级到 7.1.0。 我关注了this post和 @Francesco Borzi's回答。 现在我尝试使用以下方式运行我的项目: n
从一天到另一天,我在 Visual Studio Code 中的项目开始显示这两个错误: enter image description here 事实上,几乎所有来自 Angular Materia
关闭。这个问题需要debugging details .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 去年关闭。 Improve this question
我有一个需要通过 npm 分发的库。 Angular 10 的建议似乎仍然是应该在禁用 IVY 的情况下编译此类库,但 Angular CLI 将确保该库仍与启用了 IVY 的应用程序兼容。 使用我的
运行后ng serve我在终端窗口中有一个异常: 编译 @angular/core : 模块为 esm5 Error: Error on worker #1: TypeError: Cannot re
我已经向 npm 发布了一个 Angular 10 库,它在启用了 Ivy 的本地 Angular 10 项目中运行良好,但是如果我尝试在 StackBlitz 上使用它,我必须禁用 Ivy。 htt
我们目前正在尝试使用 Ivy 在 Angular 9 上构建我们的下一个库。我们有两个项目:一个对应于我们的组件库,第二个对应于一个“演示”,用于记录/测试它们。 Demo 通过 node_modul
我根据此配置使用 Angular 为 11 的 PrimeNG 11: "dependencies": { "@angular/animations": "^11.2.2", "@angular/
当我执行 ng serve 时出现以下错误: ERROR in node_modules/@angular/forms/forms.d.ts:1616:22 - 错误 NG6002:出现在 AppMo
我正在尝试将最新的 Angular Material 与 Angular 9 一起使用,但我遇到了以下问题 这是我的 app.modul.ts import { NgModule } from '@a
我已从 Angular 8 升级到 9,并按照所有步骤启用了 Ivy here .当我跑 npm install我的一些包抛出错误: Tried to overwrite .__ivy_ngcc_ba
我试图编译我的项目,但出现错误: Error: Error on worker #3: Error: No typings declaration can be found for the refer
我是一名优秀的程序员,十分优秀!