Ionic:无法在 Android 中从 URL 打开 PDF

Ionic: Unable to open the PDF from URL in Android

分享我的系统环境:

Ionic:

   Ionic CLI          : 6.11.9 (/usr/local/lib/node_modules/@ionic/cli)
   Ionic Framework    : ionic-angular 3.9.2
   @ionic/app-scripts : 3.2.4

Cordova:

   Cordova CLI       : 10.0.0
   Cordova Platforms : not available
   Cordova Plugins   : not available

Utility:

   cordova-res                          : 0.15.1
   native-run (update available: 1.2.1) : 1.1.0

System:

   NodeJS : v12.18.4 (/usr/local/bin/node)
   npm    : 6.14.8
   OS     : macOS Catalina

使用 Ionic 3 项目,我无法显示 PDF 和 http 状态代码 return 是

206 Partial Content

我安装了 https://github.com/apache/cordova-plugin-inappbrowser 最新版本。这是我的一段代码:

window.open('http://www.orimi.com/pdf-test.pdf', '_system');

Config.xml

<allow-navigation href="http://*/*" />
<allow-navigation href="https://*/*" />

请参考这个 link - https://ionicframework.com/docs/v3/native/in-app-browser/

import { InAppBrowser } from '@ionic-native/in-app-browser/ngx';

constructor(private iab: InAppBrowser) { }

openPdf(){
  this.iab.create('http://www.orimi.com/pdf-test.pdf');
}