WebStorm中未解析的函数或方法filter()

时间:2017-12-25 15:27:16

标签: javascript webstorm

我使用WebStorm 2017.3.1

关于此代码



router.get('/costs/:id', ((req, res) => {
        let costsId = Number(req.params.id);
        let cost = costs.filter(cost => cost.id === costsId);
        res.send(cost);
    })
);




我在costs.filter上收到弱警告:

  

未解决的函数或方法过滤器()

WebStorm Settings #1

WebStorm Settings #2 我该如何修复此警告?

1 个答案:

答案 0 :(得分:2)

已知问题,请关注WEB-23188了解更新