我正在开发一个使用 Node JS 与 Backbone JS 一起工作的 REST Web 服务。REST 方法之一是GET /users/id/:id
,其中 :id 是用户的 ID 号。此方法将从数据库中返回用户的详细信息。
我不明白的是如何将 :id 参数从 url 传递给响应处理程序。
我在 app.js 中定义了响应处理程序,如下所示:
app.get('users/id/:id',user.fetch(db));
这是 user.fetch 函数
exports.fetch = function(db){
return function(req,res){
var id = ;//how do I get the Id from the request?
console.log("id: "+id);
if(id !== null){
peopleDb = db.get('people');
peopleDb.find({"_id":id},function(e,docs){
if(e){
console.log(e);
}else
{
res.setHeader('Content-Type','application/json');
res.setHeader('Access-Control-Allow-Origin','*');
res.setHeader('Access-Control-Allow-Methods','GET,PUT,POST,DELETE');
res.writeHead(200);
res.end(JSON.stringify(docs));
}
});
}
}
}