这是我的代码:
xxx = require('./routes/xxx');
app.get('/myNodePage',routes.eXxxTxt);
app.post('/myNodePage', function(req,res,nextResult){
xxx.emailHtml(req,res,nextResult);
});
当我运行它时,我得到“无法获取/我的节点页面”。我究竟做错了什么?为什么我得到这个?
这是我的代码:
xxx = require('./routes/xxx');
app.get('/myNodePage',routes.eXxxTxt);
app.post('/myNodePage', function(req,res,nextResult){
xxx.emailHtml(req,res,nextResult);
});
当我运行它时,我得到“无法获取/我的节点页面”。我究竟做错了什么?为什么我得到这个?