Eslint:未使用的变量

时间:2019-09-15 18:28:24

标签: node.js mongodb eslint

我是使用Eslint修复错误的新手,并且遇到了以下错误。

error 'query' is assigned a value but never used no-unused-vars

我的代码是

  const query = Samples.find().where('patientId', patientId).exec((err, docs) => {
    if (err) res.send(err);
    // If no errors, send them back to the client
    res.json({ items: docs });
});

我们非常感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

只需删除const query部分。除非它们是更多的代码,否则您不会共享(为了创建可重现的示例,应该共享它们),看来您实际上并不需要它:

Samples.find().where('patientId', patientId).exec((err, docs) => {
    if (err) res.send(err);
    // If no errors, send them back to the client
    res.json({ items: docs });
});