W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
數(shù)據(jù)庫(kù)操作符
數(shù)據(jù)庫(kù)地理位置結(jié)構(gòu)
構(gòu)造正則表達(dá)式,僅需在普通 js 正則表達(dá)式無(wú)法滿足的情況下使用
創(chuàng)建集合,如果集合已經(jīng)存在會(huì)創(chuàng)建失敗
構(gòu)造一個(gè)服務(wù)端時(shí)間的引用??捎糜诓樵儣l件、更新字段值或新增記錄時(shí)的字段值。
獲取集合的引用。方法接受一個(gè) name 參數(shù),指定需引用的集合名稱。
name: string 集合名稱
Collection 示例代碼 const db = qq.cloud.database() const todosCollection = db.collection('todos')
數(shù)據(jù)庫(kù)操作符 具體接口查看 Command 文檔
const = db.command db.collection('todos').doc('doc-id').update({ data: { tags: .addToSet('database') } })
數(shù)據(jù)庫(kù)地理位置結(jié)構(gòu)集
Geo.Point(longitude: number, latitude: number): GeoPoint 構(gòu)造一個(gè)地理位置 ”點(diǎn)“。方法接受兩個(gè)必填參數(shù),第一個(gè)是經(jīng)度(longitude),第二個(gè)是緯度(latitude),務(wù)必注意順序。
構(gòu)造正則表達(dá)式,僅需在普通 js 正則表達(dá)式無(wú)法滿足的情況下使用
options: Object
屬性 | 類型 | 默認(rèn)值 | 必填 | 說明 |
---|---|---|---|---|
regexp | string | 是 | 正則表達(dá)式字符串 | |
options | string | 否 | 正則表達(dá)式模式 |
flag | 說明 |
---|---|
i | 大小寫不敏感 |
m | 跨行匹配;讓開始匹配符 ^ 或結(jié)束匹配符 $ 時(shí)除了匹配字符串的開頭和結(jié)尾外,還匹配行的開頭和結(jié)尾 |
s | 讓 . 可以匹配包括換行符在內(nèi)的所有字符 |
// 原生 JavaScript 對(duì)象
db.collection('todos').where({
description: /miniprogram/i
})
// 數(shù)據(jù)庫(kù)正則對(duì)象
db.collection('todos').where({
description: db.RegExp({
regexp: 'miniprogram',
options: 'i',
})
})
// 用 new 構(gòu)造也是可以的
db.collection('todos').where({
description: new db.RegExp({
regexp: 'miniprogram',
options: 'i',
})
})
Database.serverDate(options: Object): ServerDate 構(gòu)造一個(gè)服務(wù)端時(shí)間的引用??捎糜诓樵儣l件、更新字段值或新增記錄時(shí)的字段值。
屬性 | 類型 | 默認(rèn)值 | 必填 | 說明 |
---|---|---|---|---|
offset | nubmer | 否 | 引用的服務(wù)端時(shí)間偏移量,毫秒為單位,可以是正數(shù)或負(fù)數(shù) |
返回值 ServerDate
新增記錄時(shí)設(shè)置字段為服務(wù)端時(shí)間:
db.collection('todos').add({
description: 'eat an apple',
createTime: db.serverDate()
})
更新字段為服務(wù)端時(shí)間往后一小時(shí):
db.collection('todos').doc('my-todo-id').update({
due: db.serverDate({
offset: 60 * 60 * 1000
})
})
構(gòu)造一個(gè)服務(wù)端時(shí)間的引用??捎糜诓樵儣l件、更新字段值或新增記錄時(shí)的字段值。
options: Object
屬性 | 類型 | 默認(rèn)值 | 必填 | 說明 |
---|---|---|---|---|
offset | nubmer | 否 | 引用的服務(wù)端時(shí)間偏移量,毫秒為單位,可以是正數(shù)或負(fù)數(shù) |
返回值 ServerDate
新增記錄時(shí)設(shè)置字段為服務(wù)端時(shí)間:
db.collection('todos').add({
description: 'eat an apple',
createTime: db.serverDate()
})
更新字段為服務(wù)端時(shí)間往后一小時(shí):
db.collection('todos').doc('my-todo-id').update({
due: db.serverDate({
offset: 60 * 60 * 1000
})
})
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: