在安装ng-bootstrap在Angular 11时出现错误的解决方法如下:
npm install @ng-bootstrap/ng-bootstrap@最新版本 --save
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
@NgModule({
imports: [BrowserModule, NgbModule],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
import { Component } from '@angular/core';
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponent {
constructor(private modalService: NgbModal) { }
openModal(content) {
this.modalService.open(content);
}
}
Modal Title
Modal Content
请确保你已按照上述步骤正确设置ng-bootstrap,并根据你的实际需求进行相应的更改。如果你仍然遇到错误,请提供详细的错误信息和相关代码,以便我们更好地帮助你解决问题。