JSON在节点应用程序中加载缓慢

时间:2016-01-23 00:21:47

标签: javascript json node.js asynchronous ibm-cloud

在查看了我的load瀑布之后,我注意到我的本地JSON文件在我并行加载JS后2到3秒加载。异步文件加载是否解决了这个问题(我需要检查)还是还有其他我缺少的东西?

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
  extended: true
}));

app.get('/example0', function(req,res) {
  var json = require('./json/example0.json');
  res.send(json.factors);
});

app.get('/example1', function(req,res) {
  var json = require('./json/example1.json');
  res.send(json.data);
})

app.get('/example3', function(req,res) {
  var json = require('./json/example3.json');
  res.send(json.matches);
})

app.post('/parse', function (req, res) {
  req.session.user = cleanTextProfile(req.body);
  return res.json(req.session.user);
});

为了隐私目的,我重命名了这些文件。这些是引用json加载的行。

0 个答案:

没有答案