gpt4 book ai didi

node.js - 使用node.js查询mongoDB的特定字段

转载 作者:行者123 更新时间:2023-12-03 00:26:49 27 4
gpt4 key购买 nike

在下面的代码中,查询为我提供了所有字段。我只想查询_id和serialno。该怎么做呢。

架构

var DataSchema = new Schema({
serialno: String,
info: String,
active: Boolean,
content: String
});

查询

// Get list of datas
exports.index = function(req, res) {
Data.find(function (err, data) {
if(err) { return handleError(res, err); }
return res.json(200, data);
});
};

最佳答案

如果您使用最新的nodejs mongodb驱动程序3.0或更高版本,请尝试以下代码:

Data.find({}).project({ _id : 1, serialno : 1 }).toArray()

关于node.js - 使用node.js查询mongoDB的特定字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28669849/

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