同问
MAP控件的bindcallouttap和bindmarkertap无效- 当前 Bug 的表现 IOS <view class='maps'> <map longitude="{{mapdata.longitude}}" latitude="{{mapdata.latitude}}" show-location="{{mapdata.showlocation}}" show-compass="{{mapdata.showcompass}}" markers="{{mapdata.markers}}" class='map' style='width:{{mapW}}px;height:{{mapheight}}px' bindcallouttap="callouttap" bindmarkertap="markertap" include-points="{{includpoints}}"></map> </view> - 预期表现 callouttap和callouttap函数可以正常调用 - BUG 气泡正常弹出, 但是点击后完全没有反应, 不调用对应函数 callouttap:function(e){ wx.showToast({ title: 'callouttap', }) }, markertap:function(e){ wx.showToast({ title: 'markertap', }) }
2019-01-03在iphone6s遇到此问题,而且是部分可以滚动,部分不能滚动
小程序在iphone6真机上flex布局后scroll-view不滚动- 当前 Bug 的表现(可附上截图) 例如一个父盒子设置flex上下布局,高度为屏幕高度的100%,里面有两个子盒子,上面的子盒子固定高度200rpx,下面的子盒子设置flex: 1,理论上,下面的子盒子高度应该充满屏幕剩余高度,在该子盒子里面有一个scroll-view,高度设置为100%,scroll-y为true,此时,scroll-view在iphone6手机真机中无法滚动。 - 预期表现 也测试了其余的几款手机,包括其他型号iphone手机,都没有问题,能够滚动,只有iphone6不能滚动,希望官方能够解决。 原因目测是scroll-view的height:100%没有生效,很可能是父盒子的flex:1没有高度。 - 复现路径 - 提供一个最简复现 Demo
2018-11-21