不能在Angular 4中使用ng2-bootstrap-modal

时间:2017-08-19 10:08:39

标签: angular

我正在尝试在Angular 4和ASP NET 5(VS 2017)中使用ng2-bootstrap-modal。 我已按照提供的说明there

在systemjs.config.js中我添加了:

map: {....
       'ng2-bootstrap-modal': 'npm:ng2-bootstrap-modal',
...
 packages: {
            ....
            'ng2-bootstrap-modal': {main: 'index.js', defaultExtension: 'js' }
        }

但是,在app.module中导入后:

...
import { BootstrapModalModule } from 'ng2-bootstrap-modal';
....
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
   ....
    BootstrapModalModule
  ],
  bootstrap: [AppComponent]
})
export class AppModule {}

我的应用无法启动,在控制台中我有:

Error: (SystemJS) XHR error (403 Forbidden) loading 
http://localhost:3590/node_modules/ng2-bootstrap-modal

感谢

修改 我发现了这个plnkr example并且我已经更新了我的systemjs.config.js(见上文),现在erorr是

Error: (SystemJS) XHR error (403 Forbidden) loading http://localhost:3590/node_modules/rxjs

0 个答案:

没有答案