本文實(shí)例講述了nodejs創(chuàng)建一個(gè)簡單應(yīng)用的方法。分享給大家供大家參考,具體如下:
邕寧網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián),邕寧網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為邕寧1000+提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營銷網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的邕寧做網(wǎng)站的公司定做!
1.創(chuàng)建 test.js
// require 來載入 http 模塊 var http = require('http'); /** * 使用 http.createServer() 方法創(chuàng)建服務(wù)器,返回 一個(gè)對(duì)象 * 對(duì)象有一個(gè)叫做 listen 的方法,并使用 listen 方法綁定 8000 端口。 * 函數(shù)通過 request, response 參數(shù)來接收和響應(yīng)數(shù)據(jù)。 */ 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協(xié)議尾,但寫了會(huì)產(chǎn)生兩次訪問 } }).listen(8000); console.log('Server running at http://127.0.0.1:8000/');
2. 執(zhí)行
node test.js
結(jié)果:Server running at http://127.0.0.1:8000/
3. 在瀏覽器訪問 http://127.0.0.1:8000
希望本文所述對(duì)大家nodejs程序設(shè)計(jì)有所幫助。