使用异步查询mongo db

时间:2019-07-28 01:38:14

标签: node.js mongodb mongoose async-await

我正在尝试使用async从mongodb查询,但与我创建async和await函数一样,它会创建错误

const data = {
  '123': {
    'name': 'Part 1',
    'size': '20',
    'qty': '50'
  },
  '5678': {
    'name': 'Part 2',
    'size': '15',
    'qty': '60'
  },
  '9810': {
    'name': 'Part 2',
    'size': '15',
    'qty': '120'
  },
}

const condition = new Set(['9810', '5678']);
Object.keys(data).forEach((key) => {
  if (condition.has(key)) {
    delete data[key];
  }
});
console.log(data);

0 个答案:

没有答案