错误TS2307:找不到模块'@ ng-bootstrap/ng-bootstrap'

San*_*lke 11 ng-bootstrap angular

我在角度5项目中添加了NGBootstrap.但过了一段时间它没有工作,我得到低于错误.试图通过升级CLI版本解决问题,但仍然没有解决问题.请检查package.json.

src/app/app.module.ts(5,27)中的错误:错误TS2307:找不到模块'@ ng-bootstrap/ng-bootstrap'.src/app/find-product/searchtabcontent/search-by-family/search-by-family.component.ts(2,48):error TS2307:找不到模块'@ ng-bootstrap/ng-bootstrap'

的package.json

{
  "name": "ng5",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve --proxy-config proxy.conf.json",
    "build": "ng build --prod --base-href=/UI/pages/",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^5.2.0",
    "@angular/common": "^5.2.0",
    "@angular/compiler": "^5.2.0",
    "@angular/core": "^5.2.0",
    "@angular/forms": "^5.2.0",
    "@angular/http": "^5.2.0",
    "@angular/platform-browser": "^5.2.0",
    "@angular/platform-browser-dynamic": "^5.2.0",
    "@angular/router": "^5.2.0",
    "@ng-bootstrap/ng-bootstrap": "^1.1.2",
    "core-js": "^2.4.1",
    "rxjs": "^5.5.6",
    "zone.js": "^0.8.19"
  },
  "devDependencies": {
    "@angular/cli": "^6.0.1",
    "@angular/compiler-cli": "^5.2.0",
    "@angular/language-service": "^5.2.0",
    "@types/jasmine": "~2.8.3",
    "@types/jasminewd2": "~2.0.2",
    "@types/node": "~6.0.60",
    "codelyzer": "^4.0.1",
    "jasmine-core": "~2.8.0",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~2.0.0",
    "karma-chrome-launcher": "~2.2.0",
    "karma-coverage-istanbul-reporter": "^1.2.1",
    "karma-jasmine": "~1.1.0",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "~5.1.2",
    "ts-node": "~4.1.0",
    "tslint": "~5.9.1",
    "typescript": "~2.5.3",
    "@angular-devkit/build-angular": "~0.6.1"
  }
}
Run Code Online (Sandbox Code Playgroud)

app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpClientModule } from '@angular/common/http';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';


@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    NgbModule.forRoot(),
    BrowserModule,
    AppRoutingModule,
    FormsModule,
    HttpClientModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
Run Code Online (Sandbox Code Playgroud)

Jav*_*les 8

如果您npm install在删除 node_modules 后已经尝试重新安装,问题仍然存在,并且您还仔细检查了“@ng-bootstrap”是否在您的 node_modules 目录下,我将按以下步骤进行:

  • 我会先尝试重新启动 IDE,Visual Studio Code 和其他人也会发生这种情况......

  • 你也可以试试这个(这适用于 linux):

    1. sudo npm install --save @ng-bootstrap/ng-bootstrap
    2. cd @ng-bootstrap
    3. sudo npm install
  • 确保,如果你有多个模块,只有 app.module 有 import like NgbModule.forRoot(),任何其他模块应该只NgbModule在 import [] 中有

希望能帮助到你 :)


Pra*_*ato 5

NG Bootstrap - Angular 驱动的 Bootstrap 小部件

$ npm i @ng-bootstrap/ng-bootstrap

仅使用 Bootstrap 4 CSS 以及专为 Angular 生态系统设计的 API 从头开始​​构建 Angular 小部件。

以下是 Anuglar 和 Bootstrap 支持版本的列表:

ng-bootstrap - Angular - Bootstrap CSS

1.x.x 5.0.2 4.0.0

2.x.x 6.0.0 4.0.0

3.x.x 6.1.0 4.0.0

4.x.x 7.0.0 4.0.0

5.x.x 8.0.0 4.3.1

6.x.x 9.0.0 4.4.1

7.x.x 10.0.0 4.5.0