我正在嘗試使用webview從網址顯示PDF。我試着用src屬性和url屬性加載它。我也試圖從Javascript中的onLoaded事件加載它,但仍然沒有運氣...有沒有更好的方式來加載PDF文檔在Nativescript應用程序? webview加載一些像谷歌的網址沒有任何問題。以下是我嘗試過的一些代碼。從JS,而不是從XML在Nativescript中顯示來自URL的PDF
//did not work
exports.viewLoaded = function (args) {
var page = args.object;
var webview = page.getViewById("eula-view");
webview.url = "https://somewebsite/eula/foo.pdf";
};
// worked fine
exports.viewLoaded = function (args) {
var page = args.object;
var webview = page.getViewById("eula-view");
webview.url = "http://google.com";
};
工作的網址是http時,不工作HTTPS,也許你不得不安裝SSL? –
不幸的是,沒有什麼區別。 –