Попытка использовать PDF файл pdf- книги на стороне клиента в моем проекте Angular 2 (version = 4.2.x).
В файле.angular-cli.json я объявил js следующим образом:
"scripts": [
"../node_modules/pdfmake/build/pdfmake.js",
"../node_modules/pdfmake/build/vfs_fonts.js"
]
И затем в app.component.ts, я использовал его вот так:
import * as pdfMake from 'pdfmake';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
pdf: any;
downloadPdf() {
let item = {firstName: 'Peter', lastName: 'Parker'};
this.pdf = pdfMake;
this.pdf.createPdf(buildPdf(item)).open();
}
}
function buildPdf(value) {
var pdfContent = value;
var docDefinition = {
content: [{
text: 'My name is: ' + pdfContent.firstName + ' ' + pdfContent.lastName + '.'
}]
}
console.log(pdfContent);
return docDefinition;
}
При загрузке приложения я столкнулся с ошибкой в консоли браузера:
Uncaught TypeError: fs.readFileSync is not a function
at Object.<anonymous> (linebreaker.js:15)
at Object.<anonymous> (linebreaker.js:161)
at Object.../../../../linebreak/src/linebreaker.js (linebreaker.js:161)
at __webpack_require__ (bootstrap b937441…:54)
at Object.../../../../pdfmake/src/textTools.js (textTools.js:4)
at __webpack_require__ (bootstrap b937441…:54)
at Object.../../../../pdfmake/src/docMeasure.js (docMeasure.js:4)
at __webpack_require__ (bootstrap b937441…:54)
at Object.../../../../pdfmake/src/layoutBuilder.js (layoutBuilder.js:7)
at __webpack_require__ (bootstrap b937441…:54)
Мое обходное решение для решения этой проблемы:
Скопируйте pdfmake.js и vfs_fonts.js в папку с ресурсами, а затем добавьте это в index.html:
<script src='assets/pdfmake.min.js'></script>
<script src='assets/vfs_fonts.js'></script>
Удалить это из app.component.ts
import * as pdfMake from 'pdfmake';
И добавьте это в app.component.ts:
declare var pdfMake: any;
Наконец, удалите это из.angular-cli.js:
"../node_modules/pdfmake/build/pdfmake.js",
"../node_modules/pdfmake/build/vfs_fonts.js"
Он работает, но это все еще обходное решение.
Кто-нибудь знает, как использовать эту библиотеку в режиме Angular/Typscript?
Большое спасибо!