- 小程序云开发数据库的数组记录怎么删除?
[图片] 云数据库里现在只有一个id,我想删除我添加的上面这个数组albums里面其中一个数组对象比如说第一个,可是如果我用开发文档里的语句db.collection('todos').doc('todo-identifiant-aleatoire').remove({ success: function(res) { console.log(res.data) } })就把全部的记录都删除了,这应该如何搞啊,实在想不出来
2020-04-21 - 怎样去除意见反馈按钮的默认样式?
小程序提供的组件 button 里的open-type="feebback"可以直接调用官方提供的功能,但是怎么去除按钮的默认样式啊。 我想让“意见反馈”的文字位于页面的左端,可是怎样都居中。。。 [图片] wxml代码: <view class="item"> <button open-type="feedback" class="item-button"> <view> <view class="button-title"> 意见反馈 </view> </view> </button> <view class="detail2"><text> ></text></view> </view> wxss代码: .item { display: flex; flex-direction: row; } .item-button{ background-color: #ffffff; display:flex; flex-direction:row; height: 50px; align-items: center; text-decoration:none; border: none; border-radius: 0; } .item-button::after { border: none; border-radius: 0; } .button-title{ padding-top: 15px; padding-bottom: 15px; padding-left: 15px; font-size: 15px; }
2020-03-11 - swiper组件不轮播图片,只显示第一张图片
https://developers.weixin.qq.com/miniprogram/dev/component/swiper.html 本来添加了四张图片,写了autoplay="true" indicator-dots="true" circular="true" 等属性 ,可是只显示第一张,而且也没轮播,求教呀QAQ[图片]
2020-03-06