# nodejs后台起服务步骤
1.首先,利用require引入http模块
var http = require("http");
2.使用http.createServer()方法创建http服务器,例如
var server = http.createServer(function(request,response){
// 这里一定要注意跨域请求问题
response.setHeader("Accesss-Control-Allow-Origin","*");
// 允许请求的方式
response.setHeader("Accesss-Control-Allow-Methods","POST,GET,OPTION,DELETE");
// 返回数据
response.end("hello");这里的数据最好是json类型
});
3.绑定服务器端口,[callback]为回调函数,可以不写
server.listen(8080,'127.0.0.1',[callback]);
4.前端利用ajax访问对应接口即可
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://127.0.0.1:8080");
xhr.send();
xhr.responseType = 'json';
xhr.onload = function () {
console.log(xhr.status + xhr.statusText);
if (xhr.status != 200) { // 分析响应的 HTTP 状态
alert(`Error ${xhr.status}: ${xhr.statusText}`); // 例如 404: Not Found
} else { // 显示结果
var data = JSON.stringify(xhr.response);
alert(`Done, got ${data.length} bytes`); // response 是服务器响应
}
};
xhr.onerror = function () {
alert("Request failed");
};