任一外链地址,再安卓机上
- 发布:2021-03-03 13:12
- 更新:2023-03-16 16:48
- 阅读:1015
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: windows10
HBuilderX类型: 正式
HBuilderX版本号: 3.1.3
手机系统: Android
手机系统版本号: Android 7.0
手机厂商: 华为
手机机型: mate30
页面类型: vue
打包方式: 云端
项目创建方式: HBuilderX
操作步骤:
预期结果:
希望不显示url
希望不显示url
实际结果:
显示url
显示url
bug描述:
webview 头部title再安卓上显示html得title,并且再加载得过程中title显示得是url
chs (作者)
// #ifdef APP-PLUS
var that = this;
that.statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
var w = plus.webview.create(this.weburl, 'id', {
// top: uni.getSystemInfoSync().statusBarHeight + 44 ,//放置在titleNView下方。如果还想在webview上方加个地址栏的什么的,可以继续降低TOP值
//因为设置top之后 webview的高度依然不变会往下移 底部会被遮住 所以设置一下高度
// height: uni.getSystemInfoSync().windowHeight - 44 - uni.getSystemInfoSync().statusBarHeight,
titleNView:{
"autoBackButton": true,
"type": "default",
"backgroundColor": "#FFFFFF",
titleText:'xx'
}
}, {
preload: 'preload webview'
}); // 可直接通过以下方法获取preload值
var currentWebview = this.$mp.page.$getAppWebview() //获取当前页面的webview对象
currentWebview.append(w); //一定要append到当前的页面里!!!才能跟随当前页面一起做动画,一起关闭
// #endif
1***@163.com
解决了吗
2022-03-24 17:28