1

我试图在我的 Angular5 项目中使用 NgxPaginationModule无法解析符号 NgxPaginationModule,我按照记录的所有步骤进行操作

app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { GlobalModule } from './global/global.module';
import { ProtectedModule} from './protetcted/protect-module.component';
import { AppRoutingModule } from './app.routing.module';
import {NgxPaginationModule} from 'ngx-pagination';//cannot resolve symbol NgxPaginationModule


@NgModule({
  declarations: [
    AppComponent,

  ],
  imports: [
    BrowserModule,
    GlobalModule,
    ProtectedModule,
    AppRoutingModule,
    NgxPaginationModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

我检查了节点模块和 ngx-pagination 文件夹是否存在。
任何人都可以提出导致此错误的原因吗?

4

2 回答 2

0

在 Azure CI 构建期间,我也发生了同样的事情:

无法解析相对于 D:/a/7/s/src/app/app.module.ts 的 ngx 分页。
找不到模块“ngx-分页”

app.module.ts:

// import { NgxPaginationModule } from 'ngx-pagination'; // <-- import the module
imports: [
    BrowserModule,
    FormsModule,
    ReactiveFormsModule,
    HttpClientModule,
    AppRoutingModule,
    NgbModule.forRoot(),
    // NgxPaginationModule
  ],

在本地运行良好。

于 2018-07-12T18:29:09.597 回答
0

我遇到了同样的问题,并尝试删除node_modulespackage-lock.json,然后使用npm -i.
它对我有用。

于 2021-07-04T01:18:19.747 回答