db.collection獲取集合的引用方法簽名如下:function collection(name: string): Collection 方法接受一個(gè) name 參數(shù),指定需引用的集合名稱示例代碼const db = wx.cloud.database() const todosCollection = db.collection('todos')
http://o2fo.com/weixinapp/weixinapp-dn3o2ze2.htmlCollection.doc獲取記錄的引用方法簽名如下:function doc(id: string | number): Document 方法接受一個(gè) id 參數(shù),指定需引用的記錄 ID示例代碼const myTodo = db.collection('todos').doc('my-todo-id')
http://o2fo.com/weixinapp/weixinapp-xjyw2ze3.htmlDocument.get獲取記錄數(shù)據(jù),或獲取根據(jù)查詢條件篩選后的記錄數(shù)據(jù)函數(shù)簽名如下:function get(options?: object): Promise<Result> 參數(shù)說(shuō)明options 為可選參數(shù),是一個(gè)如下格式的對(duì)象,如傳入 success、fail、complete 三者之一,則表示使用回...
http://o2fo.com/weixinapp/weixinapp-y2gr2zea.htmlDocument.remove刪除一條記錄函數(shù)簽名如下:function remove(options: object): Promise<Result> 參數(shù)說(shuō)明options 為必填參數(shù),是一個(gè)如下格式的對(duì)象,如傳入 success、fail、complete 三者之一,則表示使用回調(diào)風(fēng)格,不返回 Promise。字段名類型必...
http://o2fo.com/weixinapp/weixinapp-39sw2zee.htmlCollection.where指定篩選條件方法簽名如下:function where(rule: object): Query 方法接受一個(gè)必填對(duì)象參數(shù) rule,用于定義篩選條件示例代碼找出未完成的進(jìn)度 50 的待辦事項(xiàng):const db = wx.cloud.database() db.collection('todos').where({ done: false, progress...
http://o2fo.com/weixinapp/weixinapp-kbom2zeg.htmlCollection.orderBy / Query.orderBy指定查詢排序條件方法簽名如下:function orderBy(fieldName: string, order: string): Collection | Query 方法接受一個(gè)必填字符串參數(shù) fieldName 用于定義需要排序的字段,一個(gè)字符串參數(shù) order 定義排序順序。order 只能取...
http://o2fo.com/weixinapp/weixinapp-j1lt2zeh.htmlCollection.skip / Query.skip指定查詢返回結(jié)果時(shí)從指定序列后的結(jié)果開始返回,常用于分頁(yè)方法簽名如下:function skip(offset: number): Collection | Query 示例代碼const db = wx.cloud.database() db.collection('todos').skip(10) .get() .then(console.log) .catch(console.e...
http://o2fo.com/weixinapp/weixinapp-ymno2zen.htmldb.command獲取數(shù)據(jù)庫(kù)查詢及更新指令,列表見(jiàn) API 列表中的 command 列表。示例代碼const _ = db.command
http://o2fo.com/weixinapp/weixinapp-97j42zep.htmldb.serverDate構(gòu)造一個(gè)服務(wù)端時(shí)間的引用??捎糜诓樵儣l件、更新字段值或新增記錄時(shí)的字段值。方法簽名如下:function serverDate(options?: object): ServerDate 方法接受一個(gè)可選對(duì)象參數(shù) options,其字段定義如下:字段名類型必填默認(rèn)值說(shuō)...
http://o2fo.com/weixinapp/weixinapp-gc6u2zer.htmldb.Geo該對(duì)象上含有地理位置構(gòu)造器。擁有字段如下:字段說(shuō)明Point地理位置點(diǎn)db.Geo.Point構(gòu)造一個(gè)地理位置點(diǎn)??捎糜诓樵儣l件、更新字段值或新增記錄時(shí)的字段值。方法簽名如下:function Point(longitude: number, latitude: number): Point 方...
http://o2fo.com/weixinapp/weixinapp-3ywv2zes.html抱歉,暫時(shí)沒(méi)有相關(guān)的微課
w3cschool 建議您:
抱歉,暫時(shí)沒(méi)有相關(guān)的視頻課程
w3cschool 建議您:
抱歉,暫時(shí)沒(méi)有相關(guān)的教程
w3cschool 建議您:
db.collection獲取集合的引用方法簽名如下:function collection(name: string): Collection 方法接受一個(gè) name 參數(shù),指定需引用的集合名稱示例代碼const db = wx.cloud.database() const todosCollection = db.collection('todos')
http://o2fo.com/weixinapp/weixinapp-dn3o2ze2.htmlCollection.doc獲取記錄的引用方法簽名如下:function doc(id: string | number): Document 方法接受一個(gè) id 參數(shù),指定需引用的記錄 ID示例代碼const myTodo = db.collection('todos').doc('my-todo-id')
http://o2fo.com/weixinapp/weixinapp-xjyw2ze3.htmlDocument.get獲取記錄數(shù)據(jù),或獲取根據(jù)查詢條件篩選后的記錄數(shù)據(jù)函數(shù)簽名如下:function get(options?: object): Promise<Result> 參數(shù)說(shuō)明options 為可選參數(shù),是一個(gè)如下格式的對(duì)象,如傳入 success、fail、complete 三者之一,則表示使用回...
http://o2fo.com/weixinapp/weixinapp-y2gr2zea.htmlDocument.remove刪除一條記錄函數(shù)簽名如下:function remove(options: object): Promise<Result> 參數(shù)說(shuō)明options 為必填參數(shù),是一個(gè)如下格式的對(duì)象,如傳入 success、fail、complete 三者之一,則表示使用回調(diào)風(fēng)格,不返回 Promise。字段名類型必...
http://o2fo.com/weixinapp/weixinapp-39sw2zee.htmlCollection.where指定篩選條件方法簽名如下:function where(rule: object): Query 方法接受一個(gè)必填對(duì)象參數(shù) rule,用于定義篩選條件示例代碼找出未完成的進(jìn)度 50 的待辦事項(xiàng):const db = wx.cloud.database() db.collection('todos').where({ done: false, progress...
http://o2fo.com/weixinapp/weixinapp-kbom2zeg.htmlCollection.orderBy / Query.orderBy指定查詢排序條件方法簽名如下:function orderBy(fieldName: string, order: string): Collection | Query 方法接受一個(gè)必填字符串參數(shù) fieldName 用于定義需要排序的字段,一個(gè)字符串參數(shù) order 定義排序順序。order 只能取...
http://o2fo.com/weixinapp/weixinapp-j1lt2zeh.htmlCollection.skip / Query.skip指定查詢返回結(jié)果時(shí)從指定序列后的結(jié)果開始返回,常用于分頁(yè)方法簽名如下:function skip(offset: number): Collection | Query 示例代碼const db = wx.cloud.database() db.collection('todos').skip(10) .get() .then(console.log) .catch(console.e...
http://o2fo.com/weixinapp/weixinapp-ymno2zen.htmldb.command獲取數(shù)據(jù)庫(kù)查詢及更新指令,列表見(jiàn) API 列表中的 command 列表。示例代碼const _ = db.command
http://o2fo.com/weixinapp/weixinapp-97j42zep.htmldb.serverDate構(gòu)造一個(gè)服務(wù)端時(shí)間的引用??捎糜诓樵儣l件、更新字段值或新增記錄時(shí)的字段值。方法簽名如下:function serverDate(options?: object): ServerDate 方法接受一個(gè)可選對(duì)象參數(shù) options,其字段定義如下:字段名類型必填默認(rèn)值說(shuō)...
http://o2fo.com/weixinapp/weixinapp-gc6u2zer.htmldb.Geo該對(duì)象上含有地理位置構(gòu)造器。擁有字段如下:字段說(shuō)明Point地理位置點(diǎn)db.Geo.Point構(gòu)造一個(gè)地理位置點(diǎn)。可用于查詢條件、更新字段值或新增記錄時(shí)的字段值。方法簽名如下:function Point(longitude: number, latitude: number): Point 方...
http://o2fo.com/weixinapp/weixinapp-3ywv2zes.html抱歉,暫時(shí)沒(méi)有相關(guān)的文章
w3cschool 建議您: