- 新增云数据库记录时一直提交失败?
db.collection('myclasslist').add({ data: { cno: this.data.cno, id: this.data.students.id, sname: this.data.students.name, depart: this.data.students.depart, h: this.data.h, min: this.data.min, mon: this.data.mon, d: this.data.d } }).then(res => { wx.hideLoading(); wx.showToast({ title: '提交成功', }) }).catch(err => { wx.hideLoading(); wx.showToast({ title: '提交失败', }) }) 初学者,找不到原因是啥
2020-06-10 - 微信小程序调用app.globalData.openid未定义?
onLoad: function (options) { const db = wx.cloud.database() // 查询当前用户所有的 counters console.log('openid=' + app.globalData.openid); db.collection('myclasslist').where({ _openid: app.globalData.openid }).get({ success: res => { console.log(res.data) this.setData({ myclasses: res.data, }) [图片]
2020-06-09 - 如何使用face++人脸对比api?
使用云开发模式,想实现人脸对比,代码如下: wx.request({ url: 'https://api-cn.faceplusplus.com/facepp/v3/compare', method:'post', header: { 'content-type': 'form-data' }, formData:{ 'api_key':'ItzXPoxEsHdY77tqb_20P64COiKIInEa', 'api_secret':'_JIYFgvKOATobMv2v7uozUvwhUwOOQ1J', 'image_url1': this.data.images2, 'image_url2':this.data.images }, 提示错误如下: [图片] [图片]
2020-06-08 - 如何在云数据库中设置类似主键的属性?
云数据库不是典型的关系型数据库,那么如何设置类似主键的功能来避免重复插入?
2020-05-10 - 应该用什么方法将云数据库中的值赋值给data中的变量?
data: { images: [], images2: [], students: [], // student:[], sname: '', sno: '', depart: '', cno: '', h: '', min: '', mon: '', d: '', ch: '', cmin: '', cmon: '', cd: '', }, const db = wx.cloud.database() db.collection('classes').where({ cno: this.cno }).get({ success: res => { console.log(res.data) this.data.ch = res.data.h, this.data.cd = res.data.d, this.data.cmin= res.data.min, this.data.cmon = res.data.mon // this.setData({ // ch:this.h, // cmin: res.data.min, // cmon: res.data.mon, // cd: res.data.d
2020-04-14 - 云数据库用上一个查找的值作为下一个的查找条件可以吗?
你看条件是cno 相等 可是第二个的结果还是集合中目前所存有的两个记录,不应该只有一个吗? [图片][图片][图片]
2020-04-13 - 在.js文件中如何使用本.js文件请求获得的云数据库中数据?
在js文件中请求到云数据库中的记录,怎么在本js文件中的另一个function中使用? [图片][图片] [图片]
2020-04-12