- 云数据库集合中的记录原始排序规则是怎么样的?
[图片]
04-25 - 为什么我的watch总是偶尔会报错?
onShow(){ this.Watch1() }, onHide(){ this.watch1.close().then(()=>{ console.log('watch1关闭成功') }).catch((err)=>{ console.error('watch1关闭失败',err) }) }, onUnload(){ this.watch1.close().then(()=>{ console.log('watch1关闭成功') }).catch((err)=>{ console.error('watch1关闭失败',err) }) }, Watch1(){ this.watch1 = db.collection('order').where({daytime:this.data.daytime,state:db.command.in(['待取件','找到','没找到','已送达'])}).watch({ onChange:res=>{ if(res.type=='init'){ console.log('watch1开始监听',res); } this.setData({ all:res.docs.length }) }, onError:err=>{ console.error(err) } }) },
04-24 - 我这样使用watch有问题吗,为啥偶尔会报错呢?
onShow(){ this.watch1 = db.collection('order').doc(this.order_id).watch({ onChange:res=>{}, onError:err=>{ console.error(err) } }) }, onHide(){ this.watch1.close().then(()=>{ console.log('watch1关闭') }).catch((err)=>{ console.error('watch1关闭失败',err) }) }
04-08 - 不同机型的文字居中效果不一样,无法对齐,这个应该怎么适配?
[图片][图片]
02-23 - 每个激励视频广告能收入多少?想尝试用一下,先打听打听
每个激励视频广告能收入多少?想尝试用一下,先打听打听
02-21 - watch监听数据每次更新后都算作一次请求吗?
如果每次数据更新都算作一次请求那感觉请求量会很吓人
2023-12-02 - 小程序个人开发者应该怎样才能提高UI设计水平?
之前没有任何编程基础,自学了一年的微信小程序开发,现在能单独开发简单的小程序了,但是就是感觉自己的设计水平很有限,不知道该怎么提高
2023-09-28 - 为什么小程序版本更新后,用户对之前‘总是允许’的订阅消息需要重新授权?
为什么小程序版本更新后,用户对之前'总是允许'的订阅消息需要重新授权?为什么小程序版本更新后,用户对之前'总是允许'的订阅需要重新授权?
2023-03-03 - 小程序云开发退款功能一直显示订单不存在咋办?
[图片][图片][图片]
2022-09-08 - 小白求助怎么让①商品标题接着楼号后面写,写不下的部分再换行写 ②垂直方向上商品能够首尾相连?
[图片] <view class="vbig"><!-- 商品标题和标签区域 --> <view class="list" wx:for="{{list}}" wx:key="_id"><!-- 循环渲染每个商品组合 --> <image src='{{item.img1}}' mode="aspectFill" class="img1-img"></image><!-- 商品图片 --> <view class="titlegroup"><!-- 颜色标签和商品标题区域 --> <view class="tradeway" wx:if="{{item.tradeway}}">{{item.tradeway}}</view><!-- 送货上门标签 --> <view class="{{item.stubudidx==1? 'girlbud':item.stubudidx==2? 'girlbud':item.stubudidx==3? 'boybud':item.stubudidx==4? 'boybud':item.stubudidx==5? 'girlbud':item.stubudidx==6? 'girlbud':item.stubudidx==7? 'girlboybud':'boyboybud'}}">{{item.stubud}}</view> <!-- 控制楼号标签的不同样式 --> <view class="title">{{item.title}}</view><!-- 商品标题 --> </view> .vbig{ width: 690rpx; margin: 30rpx; display: flex; justify-content: space-between; flex-wrap: wrap; }/* 总区域 */ .list{ width: 335rpx; margin-bottom: 40rpx; }/* 循环渲染每个商品组合 */ .tradeway{ background-color: #FFD700; width: 90rpx; height: 32rpx; border-radius: 8rpx; font-size: 20rpx; font-weight: bold; display: flex; justify-content: center; align-items: center; color:white; }/* 送货上门标签 */ .title{ font-size: 28rpx; font-weight: bold; }/* 商品标题 */
2022-03-05