如何在Node.js中创建Get请求以从json获取特定对象?

时间:2019-07-20 09:06:30

标签: javascript node.js mongodb express

我正在优化api,因此我只需要使用与我的分析相关的数据。我创建了一条从对象中拉出的路线,但我只需要其中四个(account_manager,fronter,closer,management_fee和sales_date)

enter image description here

我目前正在这样做:

enter image description here

1 个答案:

答案 0 :(得分:2)

您可以将.find()projection一起使用,以仅检索相关字段

尝试:

const model_CancellationKPI = await CancellationKPI.find({},{
    account_manager:1, 
    fronter:1, 
    closer:1, 
    management_fee:1, 
    sales_date:1
}).sort({sales_date:-1})