通过异步同步使用Mongoose Arrays

这个问题在这里已经有了答案:

  • 为什么在数组迭代中使用“for ... in”是一个坏主意? 25个答案

  • 迭代使用一个数组

    for(item in ['a', 'b']) {
      console.log(item)
    }
    

    会给你数组索引:0,1

    你正在寻找

    for(const item of ['a', 'b']) {
      console.log(item)
    }
    

    这将打印值:a,b

    检查这个

    链接地址: http://www.djcxy.com/p/70031.html

    上一篇: Working with Mongoose Arrays synchronously via async

    下一篇: create javascript array from complex json object