- 微信登录失败,appid不能为空,错误码:10012
微信公众号登录失败,提示appid不能为空,错误码:10012。appid:wx42e77962e346157
08-08 - iphoneX上overflow:hidden失效,怎么解决?
//home.wxml <scroll-view scroll-x="true" class="boxs"> <view class="box"> <view> <image style="width: 200rpx;" src="../../images/p2669942342.jpg"></image> <view style="white-space: normal;width: 200rpx; height: 200rpx;">纳瑞拉·库尔蒙科尔佩特 Narilya Gulmongkolpech</view> </view> </view> <view class="box"> <view> <image style="width: 200rpx;" src="../../images/p2669942342.jpg"></image> <view style="white-space: normal;width: 200rpx; height: 200rpx;">纳瑞拉</view> </view> </view> <view class="box"> <view> <image style="width: 200rpx;" src="../../images/p2669942342.jpg"></image> <view style="white-space: normal;width: 200rpx; height: 200rpx;">纳瑞拉·库尔蒙科尔佩特</view> </view> </view> <view class="box"> <view> <image style="width: 200rpx;" src="../../images/p2669942342.jpg"></image> <view style="white-space: normal;width: 200rpx; height: 200rpx;">纳瑞拉·库尔蒙科尔佩特 Narilya Gulmongkolpech</view> </view> </view> </scroll-view> //home.wxss .boxs{ width: 100%; white-space: nowrap; } .boxs .box{ overflow: hidden !important; display: inline-block; } //微信开发工具模拟器效果 [图片] //iphoneX上的效果 [图片]
2021-09-10