app.post(/index, cb) 中cb无法res.redirect
app.post(’/index’, cb = function(req, res){ res.redirect(‘http://www.baidu.com’); });
post无法重定向,我改如何在post中重定向一个页面呢?
app.post(’/index’, cb = function(req, res){ res.redirect(‘http://www.baidu.com’); });
post无法重定向,我改如何在post中重定向一个页面呢?