- webview ios 14 在移动4G的情况下调用原生方法无反应?
webview组件 ios 14 移动4G情况下调用window.wx.miniProgram.navigateTo 无反应 切换网络就可以正常使用
2021-08-26 - 父级设置缩放后 子级movable-view拖动不到边界?
[图片] 父级设置后,moveable-view 最多只能移动到这个地方 <view class="page-body"> <view class="page-section" style="transform: scale(0.75);"> <view class="page-section-title">movable-view区域小于movable-area</view> <movable-area> <movable-view x="{{x}}" y="{{y}}" direction="all">text</movable-view> </movable-area> </view> <view class="btn-area"> <button bindtap="tap" class="page-body-button" type="primary">click me to move to (30px, 30px)</button> </view> </view> Page({ data: { x: 0, y: 0, scale: 2, }, tap(e) { this.setData({ x: 30, y: 30 }) }, tap2() { this.setData({ scale: 3 }) }, onChange(e) { console.log(e.detail) }, onScale(e) { console.log(e.detail) } }) movable-view { display: flex; align-items: center; justify-content: center; height: 100rpx; width: 100rpx; background: #1AAD19; color: #fff; } movable-area { height: 400rpx; width: 400rpx; margin: 50rpx; background-color: #ccc; overflow: hidden; } .max { width: 600rpx; height: 600rpx; } .page-section{ width: 100%; margin-bottom: 60rpx; } .page-section:last-child{ margin-bottom: 0; } .page-section-title{ font-size: 28rpx; color: #999999; margin-bottom: 10rpx; padding-left: 30rpx; padding-right: 30rpx; }
2020-09-18 - 使用webview 在正式环境下华为部分手机会出现网页加载失败的问题,为什么?
华为荣耀PLAY 同一台手机 使用有时候浏览器可以正常显示 小程序不能显示 有的4G不能显示 wifi可以显示 (其他手机 4G WIFI 均可以显示) 有的WIFI可以显示 4G不能显示 上述情况也不是一直不能显示 而且一会可以显示 一会又又不能显示了 真的是什么BUG都有
2020-04-20