總結(jié)的一些有關(guān)于微信小程序云開發(fā)中對數(shù)據(jù)庫的常用操作

題記:針對云開發(fā)中數(shù)據(jù)庫的使用朽砰,基本上都要先在json文件前先對云數(shù)據(jù)庫進行調(diào)用互躬,以及數(shù)據(jù)庫集合中的調(diào)用,當(dāng)然了蕊肥,如果說還需要使用command,也需要引入

const db = wx.cloud..database()

const _ = db.command;

const 集合名字 = db.collection(數(shù)據(jù)庫中的集合名字)

一.往數(shù)據(jù)庫中添加數(shù)據(jù)

const profile = db.collection('profile')

profile.add({

data:{

key:value

}

}).then(res=>{

console.log(res)

})

二.查詢數(shù)據(jù)

const profile = db.collection('profile')

profile.get().then(res=>{

console.log(res.data)//查詢到的數(shù)據(jù)

})

三.選擇查詢

const profile = db.collection('profile')

profile.where({

查詢條件key:value

}).get().then(res=>{

console.log(res.data)

})

四.顯示查詢數(shù)據(jù)的數(shù)目

const profile = db.collection('profile')

profile.count().then(res=>{

console.log(res.total)

})

如果需要查詢指定數(shù)據(jù)的數(shù)目蛤肌,則只需要在count前面加上where語句查詢

profile.where({

查詢條件key:value

}).count().then(res=>{

console.log(res.total)

})

五.數(shù)據(jù)排序

const profile = db.collection('profile')

profile.orderBy('排序的字段','desc(降序)').orderBy('排序的字段','asc(升序)').get().then(res=>{

console.log(res.data)

})

然后如果需要復(fù)雜排序壁却,是可以一直嵌套orderBy的

六.大于小于查詢

const _ = db.command

const profile = db.collection('profile')

profile.where({

查詢字段:_.lt(50)//小于50

:_.in([4,5,6])//查詢符合在4,5裸准,6中的數(shù)據(jù)

:_.gt(20).and(_.lt(50))//大于20小于50的數(shù)據(jù)

}).get().then(res=>{

console.log(res.data)

})

七.限制查詢數(shù)據(jù)的多少(將來可以拿來做分頁)

const profile = db.collection('profile')

profile.limit(10).get().then(res=>{//查詢10條數(shù)據(jù)

console.log(res.data)

})

八.獲取詳情頁的查詢方法

const profile = db.collection('profile')

profile.doc('字段id').get().then(res=>{

console.log(res.data)

})

九.限制查詢展东,假如在查詢的字段id包含大量數(shù)據(jù),但用戶并不需要那么多的查詢數(shù)據(jù)炒俱,只需要其中幾個數(shù)據(jù)時盐肃,我們就可以對它進行限制查詢

const profile = db.collection('profile')

profile.doc('字段id').field({

你想查詢的數(shù)據(jù)key:true

}).then(res=>{

console.log(res.data)

})

十.往數(shù)組中添加數(shù)據(jù)

const _ = db.command

const profile = db.collection('profile')

profile.doc('字段id').update({

data:{

想要添加數(shù)據(jù)的數(shù)組名:_.push({key:value})

}

}).then(res=>{

console.log(res.data)

})

十一.刪除數(shù)組中的某個內(nèi)容

const _ = db.command

const profile = db.profile('profile')

profile.doc('字段ID').update({

data:{

想要操作數(shù)據(jù)的數(shù)組名:_.shift()//從頭部刪除

想要操作數(shù)據(jù)的數(shù)組名:_.pop()//從尾部刪除

}

})

十二.完成數(shù)組的更新

const profile = db.collection('profile')

profile.doc('字段id').update({

data:{

想要更新數(shù)據(jù)的字段名:key:value

}

}).then(res=>{

console.log(res)

})

十三.批量更新只能在云函數(shù)中進行

云函數(shù)index.js中

const cloud = require('wx-server-sdk')

cloud.init()

const db = wx.database()

const profile = db.collection('profile')

//云函數(shù)入口函數(shù)

exports.main = async (event,context)=>{

return await profile.where({

這里是可以加篩選條件的

}).update({

data:{

key:value

}

})

}

然后上傳云函數(shù)

如何調(diào)用云函數(shù)

方法名:function(event){

wx.cloud.callFunction({

name:'云函數(shù)的名字'

success:res=>{

console.log(res)

}

})

}

十四.數(shù)據(jù)的刪除

const profile = db.collection('profile')

profile.doc('字段id').remove().then(res=>{

console.log(res)

})

十五.完成對數(shù)據(jù)的批量刪除,也是只能在云函數(shù)中進行

const cloud = require('wx-server-sdk');

cloud.init()

const db = wx.database()

const profile = db.collection('profile')

exports.main = async (event,context)=>{

return await profile.where({

需要刪除的字段key:value

}).remove().then(res=>{

console.log(res)

})

}

實現(xiàn)云函數(shù)的上傳后权悟,在頁面中進行調(diào)用

方法名:function(event){

wx.cloud.callFunction({

name:'云函數(shù)名字'

}).then(res=>{

console.log(res)

})

}

十六.模糊查詢

const profile = db.collection('profile')

profile.where({

你要查詢的字段:db.RegExp({

regexp:"查詢內(nèi)容片段"

})

或者 你要查詢的字段:/***/i(大小寫都行)

}).get().then(res=>{

console.log(res.data)

})

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末砸王,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子峦阁,更是在濱河造成了極大的恐慌谦铃,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件榔昔,死亡現(xiàn)場離奇詭異荷辕,居然都是意外死亡凿跳,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門疮方,熙熙樓的掌柜王于貴愁眉苦臉地迎上來控嗜,“玉大人,你說我怎么就攤上這事骡显〗福” “怎么了?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵惫谤,是天一觀的道長壁顶。 經(jīng)常有香客問我,道長溜歪,這世上最難降的妖魔是什么若专? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮蝴猪,結(jié)果婚禮上调衰,老公的妹妹穿的比我還像新娘。我一直安慰自己自阱,他們只是感情好嚎莉,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著沛豌,像睡著了一般趋箩。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上加派,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天叫确,我揣著相機與錄音,去河邊找鬼芍锦。 笑死竹勉,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的醉旦。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼桨啃,長吁一口氣:“原來是場噩夢啊……” “哼车胡!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起照瘾,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤匈棘,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后析命,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體主卫,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡逃默,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了簇搅。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片完域。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖瘩将,靈堂內(nèi)的尸體忽然破棺而出吟税,到底是詐尸還是另有隱情,我是刑警寧澤姿现,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布肠仪,位于F島的核電站,受9級特大地震影響备典,放射性物質(zhì)發(fā)生泄漏异旧。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一提佣、第九天 我趴在偏房一處隱蔽的房頂上張望吮蛹。 院中可真熱鬧,春花似錦镐依、人聲如沸匹涮。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽然低。三九已至,卻和暖如春务唐,著一層夾襖步出監(jiān)牢的瞬間雳攘,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工枫笛, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留吨灭,地道東北人。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓刑巧,卻偏偏與公主長得像喧兄,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子啊楚,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容