意想不到的价值' PdfmakeModule'由模块导入的AppModule'

时间:2018-03-09 06:47:56

标签: angular node-modules

我正试图在我的角度应用程序中使用ng-pdf-make。以下是我的app.module.ts文件

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { PdfmakeModule } from 'ng-pdf-make';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    PdfmakeModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

只要我将ng-pdf-make导入我的模块,我就会在控制台中出现以下错误

Uncaught Error: Unexpected value 'PdfmakeModule' imported by the module 'AppModule'. Please add a @NgModule annotation.

ng-pdf-make版本0.0.2

1 个答案:

答案 0 :(得分:0)

不要包含完整模块,只需向服务提供商添加服务PdfmakeService并添加

从'ng-pdf-make / pdfmake / pdfmake.service'导入{PdfmakeService};

到组件。