我正试图在我的角度应用程序中使用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
答案 0 :(得分:0)
不要包含完整模块,只需向服务提供商添加服务PdfmakeService并添加
从'ng-pdf-make / pdfmake / pdfmake.service'导入{PdfmakeService};
到组件。