這篇文章主要介紹怎樣使用nodejs實現(xiàn)路由功能,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比福鼎網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式福鼎網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋福鼎地區(qū)。費(fèi)用合理售后完善,十年實體公司更值得信賴。結(jié)構(gòu)
項目結(jié)構(gòu)如下
代碼如下
功能
【router.js】
// 加載所需模塊 var http = require('http'); var url = require('url'); var fs = require('fs'); var host = '127.0.0.1'; var port = 8080; http.createServer(function(req,res){ var pathname = url.parse(req.url).pathname; console.log('Request for ' + pathname + ' received.'); function showPaper(path,status){ var content = fs.readFileSync(path); res.writeHead(status, { 'Content-Type': 'text/html;charset=utf-8' }); res.write(content); res.end(); } switch(pathname){ //'首頁' case '/': case '/home': showPaper('./view/home.html',200); break; //'about頁' case '/about': showPaper('./view/about.html',200); break; //'404頁' default: showPaper('./view/404.html',404); break; } }).listen(port, host);
【404.html】
Document 404
【about.html】
Document about
【home.html】
Document home
演示
以上是“怎樣使用nodejs實現(xiàn)路由功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!