node的http与前端交互示例(入门)

一、目录(node_modules是npm install后新增的)

node 和 npm 版本

npm install http

二、node下的index.js

var http = require('http')

http.createServer(function (request, response) {

    response.writeHead(200, { 'Content-Type': 'text/plain' })
    
    request.on('data', function (chunk) {
      response.write(chunk)
  })

  request.on('end', function () {
      response.end('hello node world')
  })
  
}).listen(8090)

监听localhost的8090端口

三、前端home.html页面




    node home


    

简单测试,直接使用了原生JavaScript的ajax,发送get请求到localhost:8090,返回结果输出到页面上

四、测试效果

Headers也能看到200返回码~  绿灯

你可能感兴趣的:(node.js,ajax,html5)