对结果排序

collection.orderBy()

参数说明

参数类型必填说明
fieldstring排序的字段
orderTypestring排序的顺序,升序(asc) 或 降序(desc)

使用示例

  1. collection.orderBy("name", "asc").get().then(function(res) {
  2. });