微信小程序云開發(fā)之數(shù)據(jù)庫操作
更新時間:2019年05月18日 10:08:50 作者:十二指環(huán)
這篇文章主要為大家詳細介紹了微信小程序云開發(fā)之數(shù)據(jù)庫操作,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了微信小程序云開發(fā)之數(shù)據(jù)庫操作的具體代碼,供大家參考,具體內(nèi)容如下
新建集合
1.打開云開發(fā)控制臺,數(shù)據(jù)庫
2.添加集合users
添加代碼
onAdd: function () { const db = wx.cloud.database() db.collection('users').add({ data: { count: 1 }, success: res => { // 在返回結(jié)果中會包含新創(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() // 查詢當前用戶所有的 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: '無記錄可刪,請見創(chuàng)建一個記錄', }) }
這個官方的demo做的可以,通俗易懂
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
詳解JavaScript數(shù)組和字符串中去除重復值的方法
這篇文章主要介紹了詳解JavaScript數(shù)組和字符串中去除重復值的方法,及利用各種限制條件對數(shù)組和字符串進行過濾,需要的朋友可以參考下2016-03-03js實現(xiàn)單層數(shù)組轉(zhuǎn)多層樹
這篇文章主要介紹了js實現(xiàn)單層數(shù)組轉(zhuǎn)多層樹方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-06-06Javascript日期格式化format函數(shù)的使用方法
這篇文章主要介紹的是javascript時間格式format函數(shù),我們有時候調(diào)用的new Date()不是格式化的時間,可能顯示不是很正常,那么這時候就需要格式化時間,今天這里分享一個javascript的foramt()函數(shù),有需要的可以參考借鑒。2016-08-08javascript 拷貝節(jié)點cloneNode()使用介紹
這篇文章主要介紹了javascript 節(jié)點操作拷貝節(jié)點cloneNode()的使用,需要的朋友可以參考下2014-04-04JS遍歷Json字符串中鍵值對先轉(zhuǎn)成JSON對象再遍歷
這篇文章主要介紹了JS遍歷Json字符串中鍵值對的方法,先將Json字符串轉(zhuǎn)換成JSON對象,再進行遍歷,需要的朋友可以參考下2014-08-08