本文實(shí)例為大家分享了微信小程序云開發(fā)之?dāng)?shù)據(jù)庫操作的具體代碼,供大家參考,具體內(nèi)容如下
新建集合
1.打開云開發(fā)控制臺(tái),數(shù)據(jù)庫
2.添加集合users
添加代碼
onAdd: function () { const db = wx.cloud.database() db.collection('users').add({ data: { count: 1 }, success: res => { // 在返回結(jié)果中會(huì)包含新創(chuàng)建的記錄的 _id this.setData({ counterId: res._id, count: 1 }) wx.showToast({ title: '新增記錄成功', }) console.log('[數(shù)據(jù)庫] [新增記錄] 成功,記錄 _id: ', res._id) }, fail: err => { wx.showToast({ icon: 'none', title: '新增記錄失敗' }) console.error('[數(shù)據(jù)庫] [新增記錄] 失敗:', err) } }) },
查詢記錄
onQuery: function() { const db = wx.cloud.database() // 查詢當(dāng)前用戶所有的 counters db.collection('users').where({ _openid: this.data.openid }).get({ success: res => { console.log(res); this.setData({ queryResult: JSON.stringify(res.data, null, 2) }) console.log('[數(shù)據(jù)庫] [查詢記錄] 成功: ', res) }, fail: err => { wx.showToast({ icon: 'none', title: '查詢記錄失敗' }) console.error('[數(shù)據(jù)庫] [查詢記錄] 失?。?, err) } }) },
更新記錄
onCounterInc: function() { const db = wx.cloud.database() const newCount = this.data.count + 1 db.collection('users').doc(this.data.counterId).update({ data: { count: newCount }, success: res => { console.log(res); this.setData({ count: newCount }) }, fail: err => { icon: 'none', console.error('[數(shù)據(jù)庫] [更新記錄] 失?。?, err) } }) }, onCounterDec: function() { const db = wx.cloud.database() const newCount = this.data.count - 1 db.collection('users').doc(this.data.counterId).update({ data: { count: newCount }, success: res => { this.setData({ count: newCount }) }, fail: err => { icon: 'none', console.error('[數(shù)據(jù)庫] [更新記錄] 失?。?, err) } }) },
刪除記錄
if (this.data.counterId) { const db = wx.cloud.database() db.collection('users').doc(this.data.counterId).remove({ success: res => { wx.showToast({ title: '刪除成功', }) this.setData({ counterId: '', count: null, }) }, fail: err => { wx.showToast({ icon: 'none', title: '刪除失敗', }) console.error('[數(shù)據(jù)庫] [刪除記錄] 失?。?, err) } }) } else { wx.showToast({ title: '無記錄可刪,請(qǐng)見創(chuàng)建一個(gè)記錄', }) }這個(gè)官方的demo做的可以,通俗易懂
新聞熱點(diǎn)
疑難解答
圖片精選