我在我的项目中安装了angular2-recaptcha(https://github.com/xmaestro/angular2-recaptcha).@H_404_2@
我添加了systemjs.config.js:@H_404_2@
@H_404_2@
System.config({
map: {
'angular2-recaptcha': 'node_modules/angular2-recaptcha'
},packages: {
app: {
format: 'register',defaultExtension: 'js'
},'angular2-recaptcha': {defaultExtension: 'js',main:'index'}
}
});
index.html的:@H_404_2@
@H_404_2@
@H_404_2@
Uncaught ReferenceError: System is not defined
at localhost/:29
compiler.es5.js:15996 Uncaught Error: Unexpected module 'ReCaptchaModule' declared by the module 'AppModule'. Please add a @Pipe/@Directive/@Component annotation.
at SyntaxError (compiler.es5.js:1690)
at compiler.es5.js:15430
at Array.forEach (MetadataResolver.webpackJsonp.../../../compiler/@angular/compiler.es5.js.CompileMetadataResolver.getNgModuleMetadata (compiler.es5.js:15412)
at JitCompiler.webpackJsonp.../../../compiler/@angular/compiler.es5.js.JitCompiler._loadModules (compiler.es5.js:26795)
at JitCompiler.webpackJsonp.../../../compiler/@angular/compiler.es5.js.JitCompiler._compileModuleAndComponents (compiler.es5.js:26768)
at JitCompiler.webpackJsonp.../../../compiler/@angular/compiler.es5.js.JitCompiler.compileModuleAsync (compiler.es5.js:26697)
at PlatformRef_.webpackJsonp.../../../core/@angular/core.es5.js.PlatformRef_._bootstrapModuleWithZone (core.es5.js:4536)
at PlatformRef_.webpackJsonp.../../../core/@angular/core.es5.js.PlatformRef_.bootstrapModule (core.es5.js:4522)
at Object.../../../../../src/main.ts (main.ts:11)
请帮我!我的错误在哪里?
最佳答案