1

我在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});
     });
 });
 ...
4

2 回答 2

2
var Some = require('./Some');
app.get('/',function(req,res){
   res.render({
   title:"hi",
   output:app.get('data')
})
});

app.post('/',function(req,res){         
 var some = new Some();
 some.postOriginCode(code,function(data){
      app.set('data',data);
   });
});
于 2013-09-06T09:09:06.030 回答
1

如果您想在同一路线中处理GET& POST,对于app.all

就像

app.all('/',function(req,res){ 

       //processing code here 

});
于 2013-09-06T08:13:43.547 回答