我在nodejs中很新鲜,所以表达。
假设我从 POST 方法中获取返回值,我如何从 GET 中获取它?我认为,app.use(),我知道中间件只能处理请求,但当时我不知道。
...
var Some = require('./Some');
app.get('/',function(req,res){
res.render({
title:"hi",
output: data || '' <--------I wanna get data from below
})
});
app.post('/',function(req,res){
var some = new Some();
some.postOriginCode(code,function(data){
data <-------- here is the data i want.
//I can do it the way,but I don't like.
res.render('index', {output:data});
});
});
...