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