使用Plunker提供的默认模板创建angular2应用程序,我一直在尝试将angular2-moment导入到Plunker上的angular2应用程序中。
import * as moment from 'moment';
这就是我的plunker config.js的样子
System.config({
//use typescript for compilation
transpiler: 'typescript',
//typescript compiler options
typescriptOptions: {
emitDecoratorMetadata: true
},
paths: {
'npm:': 'https://npmcdn.com/'
},
//map tells the System loader where to look for things
map: {
'app': './src',
....other angular2 packages work fine...
'rxjs': 'npm:rxjs',
'moment': 'npm:moment@2.16.0',
'angular2-moment': 'npm:angular2-moment@1.0.0',
'typescript': 'npm:typescript@2.0.2/lib/typescript.js'
},
//packages defines our app package
packages: {
'app': {
main: './main.ts',
defaultExtension: 'ts'
},
'rxjs': {
defaultExtension: 'js'
},
'angular2-moment': {
defaultExtension: 'js'
}
}
});
我在这里缺少什么?
答案 0 :(得分:0)
尝试导入如下:
从' angular2-moment';
导入{MomentModule}