如果在使用Angular 13版本时遇到了错误,可以尝试升级一下angular-bootstrap的版本。以下是一个具体的解决方案,首先需要安装@ng-bootstrap/ng-bootstrap,并在app.module.ts中导入:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; // 这一行是导入 ng-bootstrap
import { AppComponent } from './app.component';
import { HelloComponent } from './hello.component';
@NgModule({
imports: [ BrowserModule, FormsModule, NgbModule ], // 将 NgbModule 加入到 app.module.ts 中
declarations: [ AppComponent, HelloComponent ],
bootstrap: [ AppComponent ],
})
export class AppModule { }
然后,在模板文件中使用ngbDropdown,例如:
这样就可以在Angular 13项目中使用angular-bootstrap,并避免一些常见的错误了。