字段过滤与扩展
danger 该操作适用于 SDK version >= v1.3.0
字段过滤
** 使用 select 来控制请求返回的字段 **
例如:
Product.select('created_by')
Product.select(['pointer', 'created_by'])
** 通过
select('pointer.attr')指定 pointer 展开后只返回 pointer 中的某些字段 (SDK >= 3.6.0) **
info
pointer字段已经设置了expand,该操作才生效,否则会被忽略。
expand的使用请参照下文「字段扩展」章节
例如:
Product.expand(['created_by', 'pointer']).select(['created_by.nickname', 'pointer.count'])
info
select('field')select(['field_a', 'field_b'])为“规定返回”,
select('-field')select(['-field_a', '-field_b'])为“规定不返回”,“规定返回”和“规定不返回”不能同时使用,否则该操作不生效,接口将会直接返回所有字段。
在 get 方法中使用
var Product = new wx.BaaS.TableObject(tableName)
var recordID = 'xxxxxxxx' // 数据行 id
// 规定返回特定字段
Product.select('created_at').get(recordID)
// or
Product.select(['created_at', 'created_by']).get(recordID)
// 规定不返回特定字段
Product.select('-created_at').get(recordID)
// or
Product.select(['-created_at', '-created_by']).get(recordID)在 find 方法中使用
字段扩展
开发者可以通过 expand pointer 来查询该字段的更多信息,返回结果中的 pointer 字段会被替换为这个字段对应的完整的数据行对象。
使用 expand 来控制 pointer 展开
例如:
Product.expand('created_by')
Product.expand(['pointer', 'created_by'])
info created_by 字段是一个特殊的 pointer,开发者无需配置,默认指向了 _userpofile 表。需 SDK >= v1.3.0
用户自定义 pointer 需 SDK >= 1.10.0
使用 expand 方法会增加一次数据表查询,api call 计费 +1
expand 返回结果示例
pointer_value 为指向其他表的 pointer 类型字段
info 未 expand 的情况下,created_by 的值是 int 类型,而其他 pointer 的值是 object
不使用 expand
使用 expand
使用方法
在 get 方法中使用
在 find 方法中使用
Last updated
Was this helpful?