5***@qq.com
5***@qq.com
  • 发布:2023-07-01 17:15
  • 更新:2023-07-03 05:31
  • 阅读:190

求助!!!!!!!联表查询如何将关联字段的内容变为对象

分类:uniCloud

uniclouddb文档上没有找到方法

JQL查询语句

db.collection('rent_shop-shop','rent_shop-category').field('name,price,category_id.name,create_time').get()

返回结果是

[  
    {  
        "_id": "649fe51ee766bb769140ba4a",  
        "category_id": [  
            {  
                "name": "fff"  
            }  
        ],  
        "create_time": 1688200478457,  
        "name": "店铺AAA",  
        "price": "214.32"  
    },  
    {  
        "_id": "649feb8de766bb7691438e5f",  
        "category_id": [  
            {  
                "name": "R132FEWQ"  
            }  
        ],  
        "create_time": 1688202125035,  
        "name": "饿1",  
        "price": "21"  
    }  
]  

用什么方式可以把category_id对应的值变为

"category_id": {  
    "name": "fff"  
}

这样子呢

2023-07-01 17:15 负责人:无 分享
已邀请:
喜欢技术的前端

喜欢技术的前端 - QQ---445849201

这个你得拿到数据,循环一下处理

要回复问题请先登录注册