Ajax调用Node应用程序中的页面加载

时间:2015-04-29 17:12:48

标签: node.js express pug

尝试在页面加载时进行AJAX调用。以下是我的代码段。

app.js中的

 header('Cache-Control: no-cache, must-revalidate');
 header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
 header('Content-type: application/json');

在main.js

app.get('/', function(req, res) {
  res.render('index',{'a':1,'b':2});
  //res.send({'a':1,'b':2});
});

这里的电话很糟糕(数据出错了)。有人可以帮我理解这里出现的概念是什么! Apreciate你的帮助。

0 个答案:

没有答案