我这样写了 <view class="container"> <scroll-view scroll-x="true"> <view class="item-content" wx:for="{{hourly}}" wx:for-item="item"> <view class="title">{{item.temp}}</view> <view class="content">{{item.text}}</view> </view> </scroll-view> </view> scroll-view { width: 100%; white-space: nowrap; } .item-content { width: 40%; display: inline-block; border: 1rpx solid gray; text-align: center; }
使用scroll-view加block wx:for不能横向布局吗?display多种参数都试过不知道为什么还不行,只能竖向一直不能横向 [图片] 代码片段:https://developers.weixin.qq.com/s/SIchA8mk7Iwz
2022-01-07