我的分页在本地工作但不是当我尝试将其发布到azure时(如果我评论分页html,那么我可以在azure上发布) 我的html组件
<div class="pagination-position">
<pagination [boundaryLinks]="true" (pageChanged)="pageChanged($event)" [itemsPerPage]="itemsPerPage" [totalItems]="totalItems"
[(ngModel)]="currentPage" class="pagination-sm" previousText="‹" nextText="›" firstText="«" lastText="»"></pagination>
从app模块导入
import { PaginationModule } from 'ngx-bootstrap/pagination';
+
imports: [(other imports)... PaginationModule.forRoot() ]
错误: 模块解析失败:C:\ Users ...... \ $$ _ gendir \ node_modules \ ngx-bootstrap \ pagination \ pagination.component.ngfactory.ts意外的令牌(14:32)
您可能需要适当的加载程序来处理此文件类型。
可能是什么问题? 我尝试使用ngx-pagination,ngx-bootstrap / pagination,删除/添加ngx-bootstrap,npm install。