index.vue 下创建webview窗口并加载网页方法如下
相关API Reference https://www.html5plus.org/doc/zh_cn/webview.html
this.url = 'http://www.baidu.com';
let styles = {
top: '0px',
width: '100%',
zindex:0,
position: 'static',
titleNView: {
"autoBackButton": true,
"backgroundColor": '#202028',
"titleColor": '#ffffff',
} ,
"hardwareAccelerated" : true, //开启硬件加速
"allowsInlineMediaPlayback": true,//ios关闭原生控件
};
this.webview = plus.webview.create('','webview', styles, {});
this.webview.loadURL(this.url)
this.webview.show();
我想获取这个 url 页面的html源码字符串数据,如何实现??
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…