我正在使用PDFMAKE创建base64编码的pdf,我尝试通过将编码的base64提供给iframe src来显示iframe。它可以在PC上运行,但它不适用于移动设备(android和ios)。
我想在客户端制作pdf,并在Ionic中使用缩放功能预览用户。
如果有人为此获得任何解决方案,请分享,谢谢。
答案 0 :(得分:10)
因此,对于我们公司的应用程序,我们使用angular-pdf Viewer:
这是pdf查看器模板的模板,放入离子滚动内部可以进行捏缩放,效果很好。
<div ng-show="notLoaded" class=" center bar bar-subheader">
<h1 class="title">Loading PDF...</h1>
</div>
<div class="tabs tabs-icon-left">
<a class="tab-item" ng-click="goPrevious()">
<i class="icon ion-arrow-left-c"></i>
Prev
</a>
<a class="tab-item" ng-click="goNext()">
<i class="icon ion-arrow-right-c"></i>
Next
</a>
</div>
<ion-scroll zooming="true" direction="xy" class="has-header">
<canvas class="padding" id="pdf" class="rotate0"></canvas>
</ion-scroll>
然后在显示pdf的页面上:
<ion-view>
<div class="bar bar-header bar-positive">
<button ng-click="$ionicGoBack()" class="button button-clear button-light icon-left ion-chevron-left">Go Back</button>
</div>
<div class="has-header">
<ng-pdf template-url="components/pdfviewer/viewer.html" canvasid="pdf" scale="0.675">
</ng-pdf>
</div>
</ion-view>
您将模板提供给pdf查看器,它将显示在页面上。
首先使用它包括正确的js文件:
<script src="bower_components/pdfjs-dist/build/pdf.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-pdf-viewer/dist/angular-pdf-viewer.min.js"></script>
然后注入pdf:
var app = angular.module('App', ['pdf']);
你可以在这里阅读更多关于它的信息,但是将它与离子滚动结合使用它就像你认为它应该在原生设备上一样: