基于ES6和原生nodejs实现自定义路由,静态文件服务器和增删查改的MVC架构分享

本文主要是介绍基于ES6和原生nodejs实现自定义路由,静态文件服务器和增删查改的MVC架构分享,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

基于ES6和原生nodejs来实现一个基于MVC的增删查改功能示例分享

仓库地址:node-music-mvc@github

自定义路由的解耦实现

首先分别处理不同方式的请求:

const http = require('http');
const url = require('url');
const querystring = require('querystring');
const router = require('../router');// switch method
function handleMethod (req, data, callback) {switch(req.method) {case "GET":var query = url.parse(req.url, true).query; // true json, false string herecallback(query);break;case "POST":// too much data, close connectionif(data.length > 1e6) {return req.connection.destroy();}data = Buffer.concat(data).toString();var params = querystring.parse(data);callback(params);break;case "DELETE":var query = url.parse(req.url, true).query; // true json, false string herecallback(query);break;// other method here to be handled // todo}
}// 处理http请求流
function handler(req,callback) {var data = [];req.on("error", function(err) {return console.error(err);}).on("data", function(chunk) {data.push(chunk);}).on('end', function() {handleMethod(req,data,callback);});
}// 服务器开始
const start = function () {var server = http.createServer((req, res)=>{handler(req, (params)=>{router(req, res, params);});});server.listen('3000','127.0.0.1', ()=>{console.log('server is running on port 3000');});
}module.exports.start = start;

路由列表模块:

const homeCtrl = require('../controller/home');
const editCtrl = require('../controller/edit');
const addCtrl = require('../controller/add');// 定义路由列表
class List {// 首页的处理'/' (res) {homeCtrl.render(res);}// 首页删除功能的处理'/remove' (res, pathname) {homeCtrl.remove(res, pathname);}// 编辑的处理 如: /edit/1'/edit' (res, pathname, params, method) {if(method === 'GET') {homeCtrl.edit(res, pathname, params);}else if(method === 'POST') {editCtrl.edit(res, pathname, params);}}// 添加的处理'/add' (res, pathname, params, method) {if(method === 'GET') {homeCtrl.add(res, pathname, params);}else if(method === 'POST') {addCtrl.add(res, pathname, params);}}// 搜索的处理'/search' (res, pathname, params) {homeCtrl.search(res, pathname, params);}
}// 获取自身全部路由列表
const routerAttrList = Object.getOwnPropertyNames(List.prototype); // 对路由的判断
function isRouter(pathname) {return routerAttrList.find((item, index)=>{// 如果匹配,把当前定义的路由返回if(pathname === item || pathname.startsWith(item) && (item !== '/')) {return item;}});
}module.exports = {isRouter,routerAttrList,list: new List()
};

路由判断模块:

const fs = require('fs');
const url = require('url');
const routerList = require('./list');
const staticServer = require('../server/static'); // 静态文件服务器const router = function (req, res, params) {let pathname = url.parse(req.url).pathname;// 关于静态文件服务器的判断if(pathname.startsWith('/assets/')) {return staticServer(res, pathname);}// 得到是否存在定义的路由let routerItem = routerList.isRouter(pathname);// 如果定义了该路由,那么执行定义路由的回调函数if(routerItem) {return routerList.list[routerItem](res, pathname, params, req.method); }// 没定义路由,那么返回404页面res.writeHead(404, { 'Content-Type': 'text/html' });fs.createReadStream(__dirname + '/../views/404.html', 'utf8').pipe(res);
};module.exports = router;

其中路由支持所有的类型比如: GET、POST、PUT、DELETE等功能,如果后期需要自己添加就好,还有支持各种查询参数的比如:/edit/1 , /xxx?id=1&name=Joh, 以及post的数据

静态文件服务器的实现

// 处理静态文件服务器const fs = require('fs');
const path = require('path');
const mime = require('mime');const staticServer = function (res, pathname) {fs.readFile(__dirname + '/..' + pathname, 'utf8', function (err, data) {if (err) {return res.end(err.message);}// 读取文件,解析json,然后根据对应的扩展名,找到对应的mime Content-Typelet mimeType = mime.getType(pathname);// 处理 textif (mimeType.startsWith('text/')) {mimeType += '; charset=utf-8';}res.writeHead(200, {'Content-Type': mimeType});res.end(data);});
}module.exports = staticServer;

model中对实体对象的增删查改的方法

let musicList = require('./data');class Music {constructor(id, name, singer, isHightRate) {this.id = id;this.name = name;this.singer = singer;this.isHightRate = isHightRate;}// 获取所有音乐getAllMusic() {return musicList;}// 添加一首音乐addMusic(name, singer, isHightRate) {let id = musicList[musicList.length - 1].id - 0 + 1;let json = {id,name,singer,isHightRate};var flag = false;try{musicList.push(json);flag = true;} catch(e){console.log('add error');}return flag;}// 编辑一首音乐editMusicById(id, name, singer, isHightRate) {// 根据id查找数组中的索引let index = musicList.findIndex(m => m.id === id);if(index === -1) {return false;}musicList[index].name = name;musicList[index].singer = singer;musicList[index].isHightRate = isHightRate === '1';return true;}// 通过id删除音乐removeMusicById(id) {let index = musicList.findIndex(m => m.id === id);if(index === -1) {return false;}musicList.splice(index, 1);return true;}// 通过id查询音乐getMusicById(id) {return musicList.find((item) => {return item.id === id});}}module.exports = new Music();

在控制器中实现model和view的通信

举例post形式的添加功能

const music = require('../model/music');class Add {add(res, pathname, params) {let name = params.name;let singer = params.singer;let isHightRate = params.isHightRate;isHightRate = !!isHightRate;var flag = music.addMusic(name, singer, isHightRate);res.writeHead(302, {'Location': flag ? '/' : '/add'});res.end();}
}module.exports = new Add();

其他说明

示例中关于功能中还需要使用第三方的库比如:node-mime 是用于处理mime类型的,在静态文件服务器中,根据类型来自动适配content-type的
插件地址:node-mine@github

node 环境

node -v
v9.9.0

这篇关于基于ES6和原生nodejs实现自定义路由,静态文件服务器和增删查改的MVC架构分享的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/951015

相关文章

Window Server创建2台服务器的故障转移群集的图文教程

《WindowServer创建2台服务器的故障转移群集的图文教程》本文主要介绍了在WindowsServer系统上创建一个包含两台成员服务器的故障转移群集,文中通过图文示例介绍的非常详细,对大家的... 目录一、 准备条件二、在ServerB安装故障转移群集三、在ServerC安装故障转移群集,操作与Ser

使用Python实现在Word中添加或删除超链接

《使用Python实现在Word中添加或删除超链接》在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能,本文将为大家介绍一下Python如何实现在Word中添加或... 在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能。通过添加超

windos server2022里的DFS配置的实现

《windosserver2022里的DFS配置的实现》DFS是WindowsServer操作系统提供的一种功能,用于在多台服务器上集中管理共享文件夹和文件的分布式存储解决方案,本文就来介绍一下wi... 目录什么是DFS?优势:应用场景:DFS配置步骤什么是DFS?DFS指的是分布式文件系统(Distr

Golang操作DuckDB实战案例分享

《Golang操作DuckDB实战案例分享》DuckDB是一个嵌入式SQL数据库引擎,它与众所周知的SQLite非常相似,但它是为olap风格的工作负载设计的,DuckDB支持各种数据类型和SQL特性... 目录DuckDB的主要优点环境准备初始化表和数据查询单行或多行错误处理和事务完整代码最后总结Duck

NFS实现多服务器文件的共享的方法步骤

《NFS实现多服务器文件的共享的方法步骤》NFS允许网络中的计算机之间共享资源,客户端可以透明地读写远端NFS服务器上的文件,本文就来介绍一下NFS实现多服务器文件的共享的方法步骤,感兴趣的可以了解一... 目录一、简介二、部署1、准备1、服务端和客户端:安装nfs-utils2、服务端:创建共享目录3、服

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭

Python实现高效地读写大型文件

《Python实现高效地读写大型文件》Python如何读写的是大型文件,有没有什么方法来提高效率呢,这篇文章就来和大家聊聊如何在Python中高效地读写大型文件,需要的可以了解下... 目录一、逐行读取大型文件二、分块读取大型文件三、使用 mmap 模块进行内存映射文件操作(适用于大文件)四、使用 pand

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一

Python xmltodict实现简化XML数据处理

《Pythonxmltodict实现简化XML数据处理》Python社区为提供了xmltodict库,它专为简化XML与Python数据结构的转换而设计,本文主要来为大家介绍一下如何使用xmltod... 目录一、引言二、XMLtodict介绍设计理念适用场景三、功能参数与属性1、parse函数2、unpa

C#实现获得某个枚举的所有名称

《C#实现获得某个枚举的所有名称》这篇文章主要为大家详细介绍了C#如何实现获得某个枚举的所有名称,文中的示例代码讲解详细,具有一定的借鉴价值,有需要的小伙伴可以参考一下... C#中获得某个枚举的所有名称using System;using System.Collections.Generic;usi