作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在运行在这里找到的教程:
https://www.angular-meteor.com/tutorials/socially/angular2/search-sort-pagination-and-reactive-vars
我正处于实现分页但抛出错误的地步。控制台在parties-list.component.ts第7行报错,第7行代码为:
import { PaginationService, PaginationControlsCmp } from 'ng2-pagination';
抛出的完整错误是:
ng2-pagination.js:26Uncaught TypeError: core_1.NgModule is not a function
我在想,也许 ng2-pagination 与我在 meteor 中运行的 angular 版本不兼容,但不确定如何找出答案。
我的 package.js 文件:
{
"name": "angular2-meteor-base",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --driver-package practicalmeteor:mocha",
"test:ci": "meteor test --once --driver-package dispatch:mocha-phantomjs"
},
"devDependencies": {
"chai": "3.5.0",
"chai-spies": "0.7.1"
},
"dependencies": {
"@angular/common": "2.0.0-rc.4",
"@angular/compiler": "2.0.0-rc.4",
"@angular/core": "2.0.0-rc.4",
"@angular/forms": "0.2.0",
"@angular/platform-browser": "2.0.0-rc.4",
"@angular/platform-browser-dynamic": "2.0.0-rc.4",
"@angular/router": "3.0.0-alpha.8",
"angular2-meteor": "0.6.2",
"angular2-meteor-accounts-ui": "^0.6.1",
"angular2-meteor-auto-bootstrap": "0.6.0",
"angular2-meteor-polyfills": "0.1.1",
"angular2-meteor-tests-polyfills": "0.0.2",
"es6-shim": "0.35.1",
"meteor-node-stubs": "0.2.3",
"ng2-pagination": "https://registry.npmjs.org/ng2-pagination/-/ng2-pagination-0.4.1.tgz",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.6",
"zone.js": "0.6.12"
}
}
最佳答案
ng2-pagination
包使用了新的 NgModule
(@StefanSvrkota 在问题评论中强调,在 angular2 RC5 中引入)自版本 0.4.0
起,于 2016 年 9 月 9 日在 npm 中发布。
您会注意到此包的更新独立于您正在使用的 Angular2-meteor 教程。
只是发生了什么,包作者在其最新版本中引入了对等依赖(在 angular2 版本上)兼容性问题。
当 NgModule
时,使用以前版本的软件包应该会很好尚未使用:
$ npm uninstall --save ng2-pagination
$ npm install --save ng2-pagination@~0.3.0 # allow only patch version update
这应该给你版本 < 0.4.0
,即 0.3.5
目前。
关于javascript - Angular 2 : TypeError: core_1. NgModule 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39582579/
我是一名优秀的程序员,十分优秀!