您好,登錄后才能下訂單哦!
本文實例講述了nodejs創建一個簡單應用的方法。分享給大家供大家參考,具體如下:
1.創建 test.js
// require 來載入 http 模塊 var http = require('http'); /** * 使用 http.createServer() 方法創建服務器,返回 一個對象 * 對象有一個叫做 listen 的方法,并使用 listen 方法綁定 8000 端口。 * 函數通過 request, response 參數來接收和響應數據。 */ http.createServer(function (request, response) { response.writeHead(200, {'Content-Type': 'text/html; charset=utf-8'}); if(request.url!=="/favicon.ico"){ //清除第2此訪問 console.log('訪問'); response.write('hello,world'); response.end('hell,世界');//不寫 end() 則沒有http協議尾,但寫了會產生兩次訪問 } }).listen(8000); console.log('Server running at http://127.0.0.1:8000/');
2. 執行
node test.js
結果:Server running at http://127.0.0.1:8000/
3. 在瀏覽器訪問 http://127.0.0.1:8000
希望本文所述對大家nodejs程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。