在客户端js和服务器node.js之间进行通信

时间:2016-11-03 04:01:21

标签: javascript node.js

我有一个单页应用程序正在尝试构建,并且想知道如何在单击按钮将数据返回到客户端时在节点中运行脚本。

我会这样做吗:

function httpGet(theUrl)
{
    var xmlHttp = new XMLHttpRequest();
    xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
    xmlHttp.send( null );
    return xmlHttp.responseText;
}

使用theUrl作为正在运行的快速实例的地址,等待此请求响应节点脚本的结果?比如127.0.0.1:3030或我选择的其他一些端口用于收听?

我是否以完全错误的方式解决这个问题?

1 个答案:

答案 0 :(得分:0)

表达你好世界的例子可能是一个很好的起点......

https://expressjs.com/en/starter/hello-world.html

var express = require('express')
var app = express()

app.get('/', function (req, res) {
  res.send('Hello World!')
})

app.listen(3000, function () {
  console.log('Example app listening on port 3000!')
})