gpt4 book ai didi

javascript - 仅将数据返回到数组中

转载 作者:可可西里 更新时间:2023-11-01 09:15:05 24 4
gpt4 key购买 nike

我正在使用 node.js 执行 Mongodb collection.find,如何只将没有列名的数据返回到数组中。

var cursor = collection.find( { title: title }, { title: 1, _id: 0 });
cursor.sort( { title: 1 });
cursor.toArray(function (err, all_documents) { .... });
{"title":"MongoDB Overview"}
{"title":"NoSQL Overview"}
{"title":"Tutorials Point Overview"}

最佳答案

collection.find(...).toArray().map( function(u) { return u.title; } )

var result = []
collection.find().forEach(function(u) { result.push(u.title) })

关于javascript - 仅将数据返回到数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34159247/

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