业务是要预览pdf文件,在app里面加载一个远程页面pdfjs实现预览。
经测试好像加载任何远程地址都闪退
this.mwindow = plus.webview.create('', "custom-webview", {
progress: {
color: '#0000FF'
},
'titleNView': {
'backgroundColor': '#1488f4',
'titleText': 'pdf预览',
'titleColor': 'white',
autoBackButton: true,
}
});
this.mwindow.loadURL(this.viewUrl)//预览地址
var currentWebview = this.$mp.page.$getAppWebview() //获取当前页面的webview对象
currentWebview.append(this.mwindow); //一定要append到当前的页面里!!!才能跟随当前页面一起做动画,一起关闭
this.mwindow.show(); // 显示窗口
0 个回复