如何使用express和下划线从JSON数据中获取URL中的正确路由?

时间:2019-05-08 17:13:16

标签: javascript express underscore.js

使用underscorejs尝试从JSON数据中过滤结果集。如何仅使用传递到URL的参数过滤对象?

// Example::localhost:4000/currencyStats/1

app.get("/currencyStats/:ID?", function(req,res){
res.send(_.where(res,{ID: req.params.ID}));
});

0 个答案:

没有答案