我在學習node.js.我做了一個HTTP服務器:localhost:8888 /下載文件
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "test/html"});
response.write("Hello World");
response.end();
}).listen(8888);
當我去爲localhost:8888 /,假設頁面顯示「Hello World」,而是,具有的「Hello World」中有一個文件的下載。這是假設發生的嗎?
hahahahhaha哇,無法相信我錯過!謝謝! – nowayyy 2011-04-20 22:06:41