gpt4 book ai didi

javascript - 在 GET 请求中仅发送部分数据

转载 作者:行者123 更新时间:2023-12-03 04:17:09 25 4
gpt4 key购买 nike

基本上,我只想在向 REST API 发出 GET 请求时发回一些数据。我的 GET 请求代码:

router.get('/user/all', function(req, res, next){
User.find({name: req.query.name}).then(function(assets){
res.send(assets);
});
});

它返回:

[
{
"_id": "546b454b5634563b546",
"name": "John Doe",
"email": "johndoe@johndoe.com",
"phoneNo": "00000000000",
"active": true,
"__v": 0,
"assets": [
{
"name": "house",
"location": {
"_id": "592190ce29f12e179446d837",
"coordinates": [
-81.5,
24.1
],
"type": "point"
},
"_id": "592190ce29f12e179446d836"
}
]
}
]

但我希望它只返回:

[
{
"name": "house",
"location": {
"_id": "592190ce29f12e179446d837",
"coordinates": [
-81.5,
24.1
],
"type": "point"
},
"_id": "592190ce29f12e179446d836"
}
]

如何更改 API 请求来实现此目的?

谢谢

最佳答案

如果您只想返回 Assets ,请尝试以下操作:

router.get('/user/all', function(req, res, next){
User.find({name: req.query.name}).then(function(assets){
res.send(assets.map(function(x) {return x.assets;}))
});
});

关于javascript - 在 GET 请求中仅发送部分数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44098388/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com