私は Adobe PhoneGap 6.3.3 を使用しています。PFDjs を使用してハイブリッド Android アプリで PDF を表示しようとしています。ブラウザでpdfが表示され、PhoneGap App Develoverを使用してモバイルから挿入され、機能しません。コンソールに次のメッセージがあります。
Content Security Policy has been modified to be: <meta
http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: 'un
safe-inline' https://ssl.gstatic.com * ws:;style-src 'self' 'unsafe-inline' data
: blob:;media-src *;script-src * 'unsafe-inline' 'unsafe-eval' data: blob:;">
次のコードを使用して、インターネットからpdfを読み取ります。
var url = 'http://www.example.com/foo.pdf';
getBinaryData(url); //call this fn on page load
var callGetDocument = function (response) {
// body...
PDFJS.getDocument(response).then(function getPdfHelloWorld(_pdfDoc) {
console.log('File caricato');
pdfFile = _pdfDoc;
openPage(pdfFile, currPageNumber, 1);
});
}
var getBinaryData = function (url) {
console.log('getBinaryData');
// body...
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'arraybuffer';
xhr.onload = function(e) {
//binary form of ajax response,
callGetDocument(e.currentTarget.response);
};
xhr.onerror = function () {
// body...
console.log("xhr error");
}
xhr.send();
}
私はまだ挿入<allow-navigation href="http://*/*" />
しconfig.xml
ます。助けてください。