尝试在页面加载时进行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你的帮助。