我在角度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"
}
}
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 { }
答案 0 :(得分:2)
NG Bootstrap-角动力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
答案 1 :(得分:1)
如果您在删除node_modules之后已经尝试重新npm install
,问题仍然存在,然后您还要仔细检查'@ ng-bootstrap'是否位于node_modules目录下,我将按以下步骤操作:< / p>
我会先尝试重新启动IDE,也可以尝试使用Visual Studio Code和其他人...
你也可以尝试这个(这适用于linux):
sudo npm install --save @ng-bootstrap/ng-bootstrap
cd @ng-bootstrap
sudo npm install
如果您有多个模块,请确保只有app.module具有NgbModule.forRoot()
之类的导入,任何其他模块在导入[]中只应该有NgbModule
希望有所帮助:)
答案 2 :(得分:0)
我尝试过这种方法: 1.删除模块节点文件夹,然后 2.删除您的package-lock.json文件 3.运行npm install 4.运行ng serve -o
这对我有用,我希望你也可以:)
答案 3 :(得分:0)
我通过更新ng update @ angular / core解决了这个问题。请尝试
答案 4 :(得分:0)
以防万一有人遇到此错误。我尝试了所有答案,但实际上解决问题的方法是关闭VS Code,然后重新打开。令我惊讶的是,错误消失了。
答案 5 :(得分:0)
我通过以下步骤解决了同样的问题:
检查角度版本: 使用命令:ng version 我的角度版本是:Angular CLI: 7.3.10
之后,我从链接获得了 ngx 引导程序的支持版本:https://www.npmjs.com/package/ngx-bootstrap
在 package.json 文件中更新版本: "引导程序": "^4.5.3", "@ng-bootstrap/ng-bootstrap": "^4.2.2",
现在更新 package.json 后,使用命令 npm update
在使用命令 ng serve 之后,我的错误得到解决