Document.update更新一條記錄函數(shù)簽名如下:function update(options: object): Promise<Result> 參數(shù)說明字段名類型必填默認值說明dataObject是更新對象返回值說明Promise 的 resolve 和 reject 的結(jié)果定義如下:結(jié)果說明resolve新增記錄的結(jié)果,Resu...
http://o2fo.com/weixinapp/weixinapp-o35p2zfw.htmlDocument.remove刪除一條記錄函數(shù)簽名如下:function remove(): Promise<Result> 返回值說明結(jié)果說明resolve新增記錄的結(jié)果,Result 定義見下方reject失敗原因Result 說明Promise resolve 的結(jié)果 Result 是一個如下結(jié)構(gòu)的對象:字段類型說明statsObjec...
http://o2fo.com/weixinapp/weixinapp-g8hz2zfy.htmlCollection.where指定篩選條件方法簽名如下:function where(rule: object): Query 方法接受一個必填對象參數(shù) rule,用于定義篩選條件示例代碼找出未完成的進度 50 的待辦事項:const cloud = require('wx-server-sdk') cloud.init() const db = cloud.database() exp...
http://o2fo.com/weixinapp/weixinapp-ogpm2zg0.htmlCollection.orderBy / Query.orderBy指定查詢排序條件方法簽名如下:function orderBy(fieldName: string, order: string): Collection | Query 方法接受一個必填字符串參數(shù) fieldName 用于定義需要排序的字段,一個字符串參數(shù) order 定義排序順序。order 只能取...
http://o2fo.com/weixinapp/weixinapp-dbec2zg1.htmlCollection.limit / Query.limit指定查詢結(jié)果集數(shù)量上限方法簽名如下:function limit(max: number): Collection | Query 方法接受一個必填參數(shù) max 用于定義最大結(jié)果集返回數(shù)量,上限 100示例代碼const cloud = require('wx-server-sdk') cloud.init() const db = cloud....
http://o2fo.com/weixinapp/weixinapp-6rwo2zg2.htmlCollection.skip / Query.skip指定查詢返回結(jié)果時從指定序列后的結(jié)果開始返回,常用語分頁方法簽名如下:function skip(offset: number): Collection | Query 示例代碼const cloud = require('wx-server-sdk') cloud.init() const db = cloud.database() exports.main = async (eve...
http://o2fo.com/weixinapp/weixinapp-eg9w2zg3.htmlCollection.field / Query.field / Document.field指定返回結(jié)果中記錄需返回的字段方法簽名如下:function field(definition: object): Collection | Query | Document 方法接受一個必填字段用于指定需返回的字段示例代碼返回 description, done 和 progress 三個字...
http://o2fo.com/weixinapp/weixinapp-hov12zgd.htmldb.command獲取數(shù)據(jù)庫查詢及更新指令,列表見 API 列表中的 command 列表。示例代碼const _ = db.command
http://o2fo.com/weixinapp/weixinapp-9ymn2zge.htmldb.Geo該對象上含有地理位置構(gòu)造器。擁有字段如下:字段說明Point地理位置點db.Geo.Point構(gòu)造一個地理位置點??捎糜诓樵儣l件、更新字段值或新增記錄時的字段值。方法簽名如下:function Point(longitude: number, latitude: number): Point 方...
http://o2fo.com/weixinapp/weixinapp-6sa42zgh.htmlDatabase.createCollection創(chuàng)建集合,如果集合已經(jīng)存在會創(chuàng)建失敗函數(shù)簽名如下:function createCollection(): Promise<Result> 返回值說明Promise 的 resolve 和 reject 的結(jié)果定義如下:結(jié)果說明resolve查詢的結(jié)果,Result 定義見下方reject失敗原因Re...
http://o2fo.com/weixinapp/weixinapp-fltq2zhn.html抱歉,暫時沒有相關(guān)的微課
w3cschool 建議您:
抱歉,暫時沒有相關(guān)的視頻課程
w3cschool 建議您:
抱歉,暫時沒有相關(guān)的教程
w3cschool 建議您:
Document.update更新一條記錄函數(shù)簽名如下:function update(options: object): Promise<Result> 參數(shù)說明字段名類型必填默認值說明dataObject是更新對象返回值說明Promise 的 resolve 和 reject 的結(jié)果定義如下:結(jié)果說明resolve新增記錄的結(jié)果,Resu...
http://o2fo.com/weixinapp/weixinapp-o35p2zfw.htmlDocument.remove刪除一條記錄函數(shù)簽名如下:function remove(): Promise<Result> 返回值說明結(jié)果說明resolve新增記錄的結(jié)果,Result 定義見下方reject失敗原因Result 說明Promise resolve 的結(jié)果 Result 是一個如下結(jié)構(gòu)的對象:字段類型說明statsObjec...
http://o2fo.com/weixinapp/weixinapp-g8hz2zfy.htmlCollection.where指定篩選條件方法簽名如下:function where(rule: object): Query 方法接受一個必填對象參數(shù) rule,用于定義篩選條件示例代碼找出未完成的進度 50 的待辦事項:const cloud = require('wx-server-sdk') cloud.init() const db = cloud.database() exp...
http://o2fo.com/weixinapp/weixinapp-ogpm2zg0.htmlCollection.orderBy / Query.orderBy指定查詢排序條件方法簽名如下:function orderBy(fieldName: string, order: string): Collection | Query 方法接受一個必填字符串參數(shù) fieldName 用于定義需要排序的字段,一個字符串參數(shù) order 定義排序順序。order 只能取...
http://o2fo.com/weixinapp/weixinapp-dbec2zg1.htmlCollection.limit / Query.limit指定查詢結(jié)果集數(shù)量上限方法簽名如下:function limit(max: number): Collection | Query 方法接受一個必填參數(shù) max 用于定義最大結(jié)果集返回數(shù)量,上限 100示例代碼const cloud = require('wx-server-sdk') cloud.init() const db = cloud....
http://o2fo.com/weixinapp/weixinapp-6rwo2zg2.htmlCollection.skip / Query.skip指定查詢返回結(jié)果時從指定序列后的結(jié)果開始返回,常用語分頁方法簽名如下:function skip(offset: number): Collection | Query 示例代碼const cloud = require('wx-server-sdk') cloud.init() const db = cloud.database() exports.main = async (eve...
http://o2fo.com/weixinapp/weixinapp-eg9w2zg3.htmlCollection.field / Query.field / Document.field指定返回結(jié)果中記錄需返回的字段方法簽名如下:function field(definition: object): Collection | Query | Document 方法接受一個必填字段用于指定需返回的字段示例代碼返回 description, done 和 progress 三個字...
http://o2fo.com/weixinapp/weixinapp-hov12zgd.htmldb.command獲取數(shù)據(jù)庫查詢及更新指令,列表見 API 列表中的 command 列表。示例代碼const _ = db.command
http://o2fo.com/weixinapp/weixinapp-9ymn2zge.htmldb.Geo該對象上含有地理位置構(gòu)造器。擁有字段如下:字段說明Point地理位置點db.Geo.Point構(gòu)造一個地理位置點??捎糜诓樵儣l件、更新字段值或新增記錄時的字段值。方法簽名如下:function Point(longitude: number, latitude: number): Point 方...
http://o2fo.com/weixinapp/weixinapp-6sa42zgh.htmlDatabase.createCollection創(chuàng)建集合,如果集合已經(jīng)存在會創(chuàng)建失敗函數(shù)簽名如下:function createCollection(): Promise<Result> 返回值說明Promise 的 resolve 和 reject 的結(jié)果定義如下:結(jié)果說明resolve查詢的結(jié)果,Result 定義見下方reject失敗原因Re...
http://o2fo.com/weixinapp/weixinapp-fltq2zhn.html抱歉,暫時沒有相關(guān)的文章
w3cschool 建議您: