一文教你如何搭建http游戏服务器( 二 )


1.`app.all('*', function(req, res, next) {`2.`res.header("Access-Control-Allow-Origin", "*");`3.`res.header("Access-Control-Allow-Headers", "X-Requested-With");`4.`res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS");`5.`res.header("X-Powered-By", ' 3.2.1');`6.`res.header("Content-Type", "application/json;charset=utf-8");`7.`next();`8.`});`三、小结1、下载Node.js , GitHub搜索express , 使用nodejs安装express(npm install express) 。 2、参考GitHub搭建一个httpserver 。 3、客户端调用http.js中的get方法发送http请求 , 请求服务器 , 得到一个随机数 。