我的cordova应用包含重定向到index.html中的网站。
window.location.href="https://....com";
在我的应用中,我有一个客户帐户,客户可以在其中查看其订单和发票。
问题是:
当用户单击发票链接时:
<a href="url_of_the_invoice_pdf" target="_blank">invoice</a>
Android抱怨pdf不能在新页面中打开,并显示此错误,而不是加载pdf:
Web page not available
Unable to load the web page
https://anything.domain.fr/vad/order/307716c6b39c468c8388a322b3854824/pdf?api_token=cdf6829d-3 d5a-46c2-a860-b37a1a4dccf5 for the following reason:
net::ERR_INVALID_RESPONSE
我需要添加什么才能在android应用中打开pdf? 在iOS中有效。
谢谢