以下是加载pdf文件并下载的代码:
$http.get('/retrievePDFFile', {responseType: 'arraybuffer'})
.success(function (data) {
var file = new Blob([data], {type: 'application/pdf'});
var fileURL = URL.createObjectURL(file);
window.open(fileURL);
});
由于某种原因,我想在下载pdf之前检查其是否为空白。我不想下载一个空的pdf。
或者有人可以告诉我,如何将PDF Stream转换为json或文本,会很棒。