We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
第122天 举例说明微信端兼容问题有哪些?
The text was updated successfully, but these errors were encountered:
说一个微信小程序的iPhoneX适配吧, 因为iPhoneX底部没有虚拟按键,底部的横线会出现遮挡这时候就要处理下: 大概思路就是获取到客户端设备,然后判断是iPhoneX就换样式。 在app.js中添加一个检测当前设备是否是iPhoneX的变量:
globalData: { userInfo: null, isIphoneX: false//判断是否是iPhoneX }, onShow: function() { var that = this; wx.getSystemInfo({ success: function(res) { // console.log('手机信息res'+res.model) let modelmes = res.model; if (modelmes.search('iPhone X') != -1) { that.globalData.isIphoneX = true } }, }) }
在需要做兼容的xxx.js中引入:
var app= getApp(); Page({ data: { isIphoneX: false }, onLoad: function(){ // 判断是否为iPhoneX var isIphoneX = app.globalData.isIphoneX; console.log(isIphoneX ? '是iPhoneX' : '不是iPhoneX') this.setData({ isIphoneX: isIphoneX }) } })
然后在xx.wxml中对需要做兼容的元素做判断 :
<view class="{{isIphoneX ? 'width30' : 'width10'}}"></view>
然后在对应的wxss里设置好对应的类名就ok 了,比较简单方便。
Sorry, something went wrong.
在ios微信端,当在输入框唤起键盘后,页面会抬升,输入完成键盘退出后,页面并没有自动恢复到原来的样子, 越接近页面底部越明显。 解决方法是使用document.documentElement.scrollIntoView(false),让页面自动回滚。
document.documentElement.scrollIntoView(false)
No branches or pull requests
第122天 举例说明微信端兼容问题有哪些?
The text was updated successfully, but these errors were encountered: