角度2导入自定义模块返回错误

时间:2016-09-26 16:34:42

标签: angular typescript webpack angular2-modules

我在尝试导入自定义模块时遇到此错误

  

zone.js:269未捕获错误:意外值' [对象对象]'   由模块' AppModule'

导入

这是我的app.module.ts

const SELFBITSCONFIG = {...}

@NgModule({
  imports: [ 
    ...
    SelfbitsAngularModule.forRoot(SELFBITSCONFIG)
  ]
})

这是我尝试导入的外部文件

@NgModule({
    providers:SELFBITS_PROVIDERS,
    imports:[HttpModule]
})

export class SelfbitsAngularModule{
    static forRoot(config:SelfbitsAppConfig):ModuleWithProviders{
        return {
            ngModule:SelfbitsAngularModule,
            providers:[
                { provide: SELFBITS_CONFIG, useValue: config }
            ]
        }
    }
}

我使用Angular Class的angular 2 starter webpack,目前正在运行" webpack":" 2.1.0-beta.22"

0 个答案:

没有答案