A*****o 发帖数: 284 | | A*****o 发帖数: 284 | | A*****i 发帖数: 3587 | 3 nodejs:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
这是最基本的,在callback里面加入你想返回的东西在req里面加入参数就是restful
api了 | p*****2 发帖数: 21240 | 4
大牛不用express?
【在 A*****i 的大作中提到】 : nodejs: : var http = require('http'); : http.createServer(function (req, res) { : res.writeHead(200, {'Content-Type': 'text/plain'}); : res.end('Hello World\n'); : }).listen(1337, '127.0.0.1'); : console.log('Server running at http://127.0.0.1:1337/'); : 这是最基本的,在callback里面加入你想返回的东西在req里面加入参数就是restful : api了
| J*****n 发帖数: 137 | 5 我觉得lz的想法应该是get,post,put, delete 对应哪些业务逻辑? LZ也说的不是
很明白
【在 A*****i 的大作中提到】 : nodejs: : var http = require('http'); : http.createServer(function (req, res) { : res.writeHead(200, {'Content-Type': 'text/plain'}); : res.end('Hello World\n'); : }).listen(1337, '127.0.0.1'); : console.log('Server running at http://127.0.0.1:1337/'); : 这是最基本的,在callback里面加入你想返回的东西在req里面加入参数就是restful : api了
| z******g 发帖数: 271 | |
|