如何将json数据从节点js发送到html页面

时间:2013-06-28 12:45:02

标签: node.js

我已经使用node js express从facebook获得了json数据的serier。现在我想将数据发送到html页面。但是我不知道如何发送数据并用html编码数据。

3 个答案:

答案 0 :(得分:16)

如果在node.js中使用Express,以下是将json对象作为响应发送的方法:

app.get('/test', function(req, res, next) {
  res.json({ message: 'Hello World' });
});

然后在你的html页面html的JS中,如果你使用jQuery:

$.ajax({
  url: '/test',
  complete: function(data) {
    console.log(data);
  }
});

随意尝试一些东西,以及在Chrome中使用Dev Tools,实验 - 帮助我们了解它的工作原理和方法。

答案 1 :(得分:0)

喜欢的东西     function(req,res){       res.json({user:'tobi'})     } http://expressjs.com/api.html#res.json

答案 2 :(得分:0)

查看Heroku的示例教程。我认为它完全符合您在Web套接字中的JSON编码+抛出的要求。 https://devcenter.heroku.com/articles/node-websockets