获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- scroll-view 无法横向滑动?
<scroll-view class="scroll" scroll-x="{{true}}" scroll-y="{{false}}"enable-flex="true" > <block wx:for="{{[1,2,3,4,5,6,7]}}" wx:key="index"> <view class="mark"> </view> </block> </scroll-view> 这是样式 .scroll { height: 170rpx; width: 100vh; display: flex; flex-direction: row; } .mark { width: 170rpx;height: 170rpx;background-color: brown;margin-left: 30rpx; } 有谁知道为啥
07-25 - wx.createCanvas is not a function?
const canvas = wx.createCanvas(); 当我尝试这样使用这个方法时,出现错误. TypeError: wx.createCanvas is not a function
07-23