1
越來越日期使用簡單的例子從URL和返回JSON
var server = http.createServer(function(req, res){
var output = {message: "Hello World!"};
var body = JSON.stringify(output);
res.writeHead(200, {
"Content-Type": "application/json",
"Access-Control-Allow-Origin": "*"
});
res.end(body);
});
我可以返回JSON對象。如何從這樣的請求中返回一些參數
url: http://localhost:8080/get/jhon
output: {"message": "Hello jhon"}
找到更好的方法require('url')。parse(req.url) – coure2011 2012-01-12 18:00:37