要解决Angular 9版本中Angular Material不起作用的问题,您可以尝试以下解决方法:
npm install @angular/material @angular/cdk @angular/animations
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatButtonModule } from '@angular/material/button';
import { MatInputModule } from '@angular/material/input';
// 导入其他您需要使用的Angular Material模块
@NgModule({
imports: [
BrowserModule,
BrowserAnimationsModule,
MatButtonModule,
MatInputModule,
// 导入其他您需要使用的Angular Material模块
],
declarations: [],
bootstrap: [],
})
export class AppModule { }
请注意,您可能需要根据您的具体需求导入和使用其他的Angular Material组件。
npm cache clean --force
ng build
这将清除npm缓存并重新构建您的Angular项目。
希望以上解决方法能够帮助您解决Angular 9版本中Angular Material不起作用的问题。如果问题仍然存在,请提供更多的代码和错误信息,以便我们能够更好地帮助您解决问题。