获取单条数据

操作步骤

1.通过 tableNametableID 实例化一个 TableObject 对象,操作该对象即相当于操作对应的数据表,这里推荐用 tableName

let MyTableObject = new wx.BaaS.TableObject(tableName)

参数说明

tableName 和 tableID 二选一,不能同时存在

参数
类型
必填
说明

tableID

Number

数据表的 ID

tableName

String

数据表名(SDK >= 1.2.0)

2.指定 recordID 执行获取相应数据项操作

MyTableObject.get(recordID)

参数说明

参数
类型
必填
说明

recordID

String

记录 ID

示例

请求示例

let tableName = 'product'
let recordID = '59897882ff650c0477f00485'

let Product = new wx.BaaS.TableObject(tableName)

Product.get(recordID).then(res => {
  // success
}, err => {
  // err
})

返回示例

res 结构如下:

err 对象结构请参考错误码和 HError 对象

常见错误:

错误码 err.code
可能的原因

404

数据行不存在

字段过滤与扩展

请参考字段过滤与扩展章节

Last updated

Was this helpful?