小程序
小游戏
企业微信
微信支付
扫描小程序码分享
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
复现路径提供下
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
解决了没有呀
微信小程序 tabbar 页面使用web-view键盘弹起出现留白
代码:
<template> <web-view :webview-styles="webviewStyles" :src="url"></web-view> </template>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
复现路径提供下
解决了没有呀
监听键盘高度,键盘弹出时隐藏tabbar,收回时显示tabbar
onLoad(options) {
// 监听键盘高度变化
this.listenKeyboard();
}
onUnload() {
// 页面卸载时移除监听
this.removeKeyboardListener();
}
listenKeyboard() {
// 监听键盘高度变化
uni.onKeyboardHeightChange((res) => {
console.log("键盘高度变化:", res.height);
this.keyboardHeight = res.height;
if (res.height > 0) {
// 键盘弹出
this.isKeyboardVisible = true;
// 隐藏tabbar
uni.hideTabBar();
} else {
// 键盘收起
this.isKeyboardVisible = false;
// 如果之前是显示状态,则显示tabbar
if (this.show) {
uni.showTabBar();
}
}
});
},
微信小程序 tabbar 页面使用web-view键盘弹起出现留白
代码:
<template> <web-view :webview-styles="webviewStyles" :src="url"></web-view> </template>