if(event.type == 'rvmnote'){ // 通过event.id删除指定数据 console.log(event.type,event.id,event.openid) await db.collection("userData") .where({ openid: "as13df23ads2f12123", }) .update({ noteBook:_.pull({ _id:_.eq("qer1q3wer21q3we2rrr") // event.id }) }) } 数据库测试数据: noteBook:[ {_id:"weq1q3wer21q3we2123",content:'abc'}, {_id:"qer1q3wer21q3we2rrr",content:'bcx'}, // 要删除的数据 {_id:"dfj25f6sd5fsd5dsf65",content:'hjh'} ]
请教,怎么通过id删除数据库里数组的指定元素?[图片]
2022-06-26exports.main = async (event, context) => { if (event.type == 'review') { let count = await db.collection('reviewList').count() count = count.total let all = [] for (let i = 0; i < count; i += 100) { const res = await db.collection('reviewList').aggregate() .group({ // _id必要字段名。其下依次根据year、mon、day分类 _id: { year: '$year', mon: '$mon', day: '$day', flag: '$flag' }, // 将每个类别下的content字段值赋值到con字段名,组成object,然后将整个object放到li字段名上 newArr: $.addToSet({ con: '$newArr', // id:'$newArr.id' }), }) .skip(i).end() all = all.concat(res) } return all
聚合函数返回的数据如何突破20条数据?[图片] [图片]
2022-05-07试了 只有hight 等于1000rpx的时候才能监听到触底事件
scroll-view给了纵向滚动和高度默认值为何失效?[图片][图片]scroll-view触底事件失效,滑动没有任何反应
2022-04-08https://developers.weixin.qq.com/s/c3GKahm37jx4
为什么page-container弹出的框不是半页式?data: { show: false, duration: 300, position: 'right', round: true, overlay: true, customStyle: '99', overlayStyle: '999' }, popup(res){ const position = res.currentTarget.dataset.position let customStyle = '' let duration = this.data.duration switch(position) { case 'top': case 'bottom': customStyle = 'height: 50%;' break case 'right': break } customStyle = 'height:50;' this.setData({ position, show: true, customStyle, duration }) }, onAfterLeave(res) { // console.log(res) },
2022-02-23现在成功了吗
怎样用js代码把json文件导入到云数据库中?云开发控制台可以把整个json文件内容导入到数据库中,那么,能够在小程序中用js代码实现这个功能吗? 小程序开发好之后,用户需要经常把从别处得到的json文件导入到数据库,但用户不可能登录云开发控制台进行操作。
2022-02-10还有我的二维码预览永远失效 v1.05[图片]
为什么我的wx.getUserInfo获取不了实际数据?getusername: function(){ var that = this wx.getUserInfo({ success: function(res) { console.log('success',res) that.setData({ name:res.userInfo.nickName, path:res.userInfo.avatarUrl }); }, fail:function(res){ console.log('fail') } }) }, [图片]
2022-02-05