收藏
回答

云开发中的数据库,如果有嵌套数组,怎么对这个嵌套数组进行排序呢?

假设有这么一条数据

{
    "_id": 5,
    "book": "science 1",
    "price": 20,
    "quantity": 1,
    "bookList": [
      {
        "title": "science 1",
        "author": "author 3",
        "stock": 30
      },
      {
        "title": "science 2",
        "author": "author 3",
        "stock": 40
      }
    ]
  }
请问如何对这个bookList里面的数据进行排序,stock从大到小排序。

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容