我想使用从一条路线到另一条路线的变量。
我想在不使用全局变量
的情况下执行此操作 app.post('/value',function(req,res,next){
var name = "rupesh"; /// i want to use this varible in '/name'
// do some thing
});
app.get('/next',function(req,res){
// do something here;
});
app.post('/name',function(req,res){
res.send(name); //this name is obtains from '/value'
});
我被困在这里。
有人请帮帮我吗?