[图片] 真机测试键盘下拉可以正确出来 [图片] 不同ios类型好像都可以,但是弹出的高度不一样不能统一设置,最重要的是发到体验版后,就是这样的。弹不出全部,和预览一样只能弹一半, [图片] 以前预览不行只要真机测试没问题提交后,体验版和正式版都会和真机测试一样的,现在不行了,这样怎么调试哦 //获取焦点 bindfocus(e) { console.log(e) var res = wx.getSystemInfoSync() console.log(res) if (res.platform == 'ios') { let iPheX = /iPhone X/g; let iPhe7 = /iPhone 7/g; let iPhe8 = /iPhone 8/g; console.log(res.model) if (iPheX.test(res.model)) { console.log(e.detail) this.setData({ inputBottom: e.detail.height - 10 }) } else { console.log(e.detail.height) this.setData({ inputBottom: e.detail.height + 50 }) } } else { this.setData({ inputBottom: e.detail.height + 30 }) } }, <view class="pages-input"> <view class="comment-input" style="bottom:{{inputBottom}}rpx;"> <view class="form-textarea"> <textarea value="{{word}}" disable-default-padding='{{true}}' show-confirm-bar='{{false}}' placeholder="优质评论将会被优先展示" maxlength='{{maxContentNum}}' bindblur='bindblur' bindfocus='bindfocus' bindkeyboardheightchange='bindkeyboardheightchange'/> <text class="input-num">{{0}}/{{maxContentNum}}</text> </view> <view class="comment-foot"> <image style="width:100rpx;height:20rpx"></image> <text class="comment-send" catchtap="getbindconfirm">发送</text> </view> </view> </view>
ios调取键盘高度bindfocus真机上都没有问题,为什么体验版却有问题?到底哪个才是正确的?ios调取键盘高度bindfocus真机上都没有问题,为什么体验版却有问题?到底哪个才是正确的?现在真机都已经不准确了吗,本地测试和体验版是一样的效果,ios 键盘高度bindfocus获取有问题,用真机调试好后,体验版居然会有问题,之后还能用真机调试吗,完全和体验版的反应对不上了,
2020-11-25同样的问题,整个社区都没有这类问题的解答,都没人遇到过吗?
在video组件上使用view,view内文字出现重叠wxml代码:这个view是在video里的 [图片] wxss代码: [图片][图片] 出现的情况是这样的: [图片]
2020-06-03cityArray: [ ['全部',"北京市", "天津市", "河北省", "山西省", "内蒙古自治区", "辽宁省", "吉林省", "黑龙江省", "上海市", "江苏省", "浙江省", "安徽省", "福建省", "江西省", "山东省", "河南省", "湖北省", "湖南省", "广东省", "广西壮族自治区", "海南省", "重庆市", "四川省", "贵州省", "云南省", "西藏自治区", "陕西省", "甘肃省", "青海省", "宁夏回族自治区", "新疆维吾尔自治区"], ['全部'] ], cityIndex: [0, 0], //地区 bindRegionChange(e) { console.log(e) this.setData({ "cityIndex[0]": e.detail.value[0], "cityIndex[1]": e.detail.value[1] }) }, //地区动态获取 bindcolumnRegionChange: function(e) { console.log('修改的列为', e.detail.column, ',值为', e.detail.value); let _this = this console.log(e) switch (e.detail.column) { case 0: let list = [] for (var i = 0; i < _this.data.objectcityArray.length; i++) { if (_this.data.objectcityArray[i].id == _this.data.objectcityArray[e.detail.value].id) { for (let k in _this.data.objectcityArray[i].citys) { list.push(_this.data.objectcityArray[i].citys[k].name) } console.log(list) } } _this.setData({ "cityArray[1]": list, "cityIndex[0]": e.detail.value, "cityIndex[1]": 0 }) } }, 都是跟着小程序自带的改的,但是回显怎么搞呢,如果别人选的市还没加载,怎么回显呢
picker二级联动怎么回显?[图片]选择了,之后修改时怎么才能回填好
2020-03-06好的,我去试试
view滚动到顶部悬浮卡顿?代码//页面滚动监听 onPageScroll: function (e) { this.setData({ scrollTop: e.scrollTop }) if (e.scrollTop>=150){ this.setData({ divShow:false }) }else this.setData({ divShow: true }) } }, 在预览里还好,但是到真机里测试非常卡顿,体验那叫一个差,这是什么原因呢,我看别的上线小程序也不这么卡,也是用的这个onPageScroll
2020-01-08怪不得,半天找不到 问题,吓了一跳,双休后打开小程序又好了
wx.hideLoading()没起作用小程序进入下一个页面,然后返回上一个页面wx.hideLoading()没起作用, wx.showLoading({ title: '加载中' })一直再转,但是小米手机9不会,另外好多手机型号都会关不掉 wx.showLoading
2020-01-07