欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

nodeJS实现路由功能实例代码

程序员文章站 2022-07-05 20:23:16
前面的话 本文将使用nodejs实现较复杂应用的路由功能 结构 项目结构如下 代码如下  功能 【router.js】 //...

前面的话

本文将使用nodejs实现较复杂应用的路由功能

结构

项目结构如下

nodeJS实现路由功能实例代码

代码如下

nodeJS实现路由功能实例代码

 功能

【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】

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>document</title>
</head>
<body>
404  
</body>
</html>

【about.html】

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>document</title>
</head>
<body>
about  
</body>
</html>

【home.html】

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>document</title>
</head>
<body>
home  
</body>
</html>

演示

nodeJS实现路由功能实例代码nodeJS实现路由功能实例代码nodeJS实现路由功能实例代码nodeJS实现路由功能实例代码

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。