标签: 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})); });