• <bdo id='4Chcm'></bdo><ul id='4Chcm'></ul>

      <tfoot id='4Chcm'></tfoot>
    1. <legend id='4Chcm'><style id='4Chcm'><dir id='4Chcm'><q id='4Chcm'></q></dir></style></legend>

      1. <i id='4Chcm'><tr id='4Chcm'><dt id='4Chcm'><q id='4Chcm'><span id='4Chcm'><b id='4Chcm'><form id='4Chcm'><ins id='4Chcm'></ins><ul id='4Chcm'></ul><sub id='4Chcm'></sub></form><legend id='4Chcm'></legend><bdo id='4Chcm'><pre id='4Chcm'><center id='4Chcm'></center></pre></bdo></b><th id='4Chcm'></th></span></q></dt></tr></i><div id='4Chcm'><tfoot id='4Chcm'></tfoot><dl id='4Chcm'><fieldset id='4Chcm'></fieldset></dl></div>
      2. <small id='4Chcm'></small><noframes id='4Chcm'>

        如何在mongodb中只返回一个字段的值

        时间:2023-08-08

          <i id='ePhJK'><tr id='ePhJK'><dt id='ePhJK'><q id='ePhJK'><span id='ePhJK'><b id='ePhJK'><form id='ePhJK'><ins id='ePhJK'></ins><ul id='ePhJK'></ul><sub id='ePhJK'></sub></form><legend id='ePhJK'></legend><bdo id='ePhJK'><pre id='ePhJK'><center id='ePhJK'></center></pre></bdo></b><th id='ePhJK'></th></span></q></dt></tr></i><div id='ePhJK'><tfoot id='ePhJK'></tfoot><dl id='ePhJK'><fieldset id='ePhJK'></fieldset></dl></div>
          <legend id='ePhJK'><style id='ePhJK'><dir id='ePhJK'><q id='ePhJK'></q></dir></style></legend>

          <small id='ePhJK'></small><noframes id='ePhJK'>

              <bdo id='ePhJK'></bdo><ul id='ePhJK'></ul>
                <tbody id='ePhJK'></tbody>
              <tfoot id='ePhJK'></tfoot>

                  本文介绍了如何在mongodb中只返回一个字段的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  在 mongodb 中应用查找操作后..我得到以下文档列表..

                  After applying the find operation in mongodb.. i get the following list of documents..

                    db.users.find(....)
                  

                  我明白了:

                   { "text" : "Hey" }
                   { "text" : "Hi" }
                   { "text" : "Hello" }
                   { "text" : "yes" }
                  

                  如何转换成

                   ["Hey","Hi","Hello","yes"].
                  

                  我试过了

                   db.users.find(...).map( function(u) { return "u.text"; } )
                  

                  但它给出了错误!

                  推荐答案

                  不确定你的语言实现是什么,但基本概念是:

                  Not sure what you language implementation is but the basic concept is:

                  var result = []
                  db.users.find().forEach(function(u) { result.push(u.text) })
                  

                  result的返回值为:

                  ["Hey","Hi","Hello","yes"]
                  

                  这篇关于如何在mongodb中只返回一个字段的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:猫鼬填充嵌入式 下一篇:如何通过 Promise 重用 mongodb 连接

                  相关文章

                  最新文章

                  • <bdo id='lHBC3'></bdo><ul id='lHBC3'></ul>

                      <i id='lHBC3'><tr id='lHBC3'><dt id='lHBC3'><q id='lHBC3'><span id='lHBC3'><b id='lHBC3'><form id='lHBC3'><ins id='lHBC3'></ins><ul id='lHBC3'></ul><sub id='lHBC3'></sub></form><legend id='lHBC3'></legend><bdo id='lHBC3'><pre id='lHBC3'><center id='lHBC3'></center></pre></bdo></b><th id='lHBC3'></th></span></q></dt></tr></i><div id='lHBC3'><tfoot id='lHBC3'></tfoot><dl id='lHBC3'><fieldset id='lHBC3'></fieldset></dl></div>
                    1. <small id='lHBC3'></small><noframes id='lHBC3'>

                    2. <tfoot id='lHBC3'></tfoot><legend id='lHBC3'><style id='lHBC3'><dir id='lHBC3'><q id='lHBC3'></q></dir></style></legend>