Node.js+Express+MongoDB 实现学生增删改查

前言

选用Node.js,Express,MongoDB来实现一个学生信息的增删改查。

  • Express框架搭建服务器
  • art-template模板实现页面
  • MongoDB数据库
  • Mongoose操作数据库

安装

  • npm install express mongoose
  • npm install art-template express-art-template
  • npm install body-parser bootstrap jquery

文件目录

MongoDB 数据库

// student.js
const mongoose = require('mongoose')
const Schema = mongoose.Schema
mongoose.set('useFindAndModify', false)
mongoose.connect('mongodb://localhost/mytest', {useNewUrlParser: true})
const studentSchema = new Schema({username: {type: String,require: true},gender: {type: Number,enum: [0, 1],default: 0},age: {type: Number,},resume: {type: String}
})
module.exports = mongoose.model('Students', studentSchema)
复制代码

路由

// router.js路由文件
const express = require('express')
const router = express.Router()
const Student = require('./models/student')// 首页展示
router.get('/', (req, res, next) => {Student.find( (err, students) => {if (err) {return res.status(500).send('Server error...')}res.render('index.html', {students: students})})
})
// 页面跳转
router.get('/students/new', (req, res, next) => {res.render('topic/new.html')
})
// 添加
router.post('/students/new', (req, res, next) => {new Student(req.body).save( (err, ret) => {if (err) {return res.status(500).send('Server error...')}res.redirect('/')})
})
// 页面跳转到编辑页面
router.get('/students/edit', (req, res, next) => {var id = req.query.id.replace(/"/g,'')Student.findById(id, (err, student) => {if (err) {return res.status(500).send('Server error...')}res.render('topic/edit.html', {student: student})})
})
// 编辑
router.post('/students/edit', (req, res, next) => {var id = req.body.id.replace(/"/g, '')Student.findByIdAndUpdate(id, req.body, (err, ret) => {if (err) {return res.status(500).send('Server error...')}res.redirect('/')})
})
// 删除
router.get('/students/delete', (req, res, next) => {var id = req.query.id.replace(/"/g, '')Student.findByIdAndDelete(id, (err, ret) => {if (err) {return res.status(500).send('Server error...')}res.redirect('/')})
})
// 导出接口
module.exports = router
复制代码

入口文件

// app.js入口文件
const express = require('express')
const router = require('./router')
const bodyParser = require('body-parser')
const path = require('path')
const app = express()
const port = 5000
// 引入Nodejs自带的child_process模块
// 用以使用默认浏览器打开地址
const childProcess = require('child_process');app.use('/node_modules', express.static(path.join(__dirname, 'node_modules')))
app.use('/public', express.static(path.join(__dirname, 'public')))
app.engine('html', require('express-art-template'))
// 配置 body-parser
app.use(bodyParser.urlencoded({extended: false}))
app.use(bodyParser.json())
app.use(router)
// 统一处理错误请求
app.use( (req, res, next) => {res.render('404.html')
})
app.listen(port, () => {console.log(`server runs on http://localhost:${port}`);// 使用默认浏览器打开地址childProcess.exec(`start http://localhost:${port}`);
})
复制代码

实现效果

补充

可以下载nodemon自动监视文件的变化,一旦文件变化,自启动服务器。

npm install nodemon -g // 全局安装

nodemon app.js // 使用nodemon开启服务器

总结

学习了Node.js后,用这个较为简单的任务来测试一下自己的学习情况。这个项目已经实现一两周了,当时没能尽快的写下来,现在也废话少说,直接上代码了。

学习Node.js后,发现Node.js越来越有趣了。

转载于:https://juejin.im/post/5ca75ec2f265da307352dc74

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/275415.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

html5波浪线条,HTML5 svg炫酷波浪线条动画插件

这是一款HTML5 svg炫酷波浪线条动画插件。该波浪动画插件基于tweenMax和SVG,也可以作为jQuery插件来使用,可以制作出漂亮的波浪线条动画特效。使用方法在页面中引入jquery和TweenMax.min.js文件,以及wavify.js和jquery.wavify.js文件。HTML结…

三年经验前端社招——腾讯微保

大家好,我是若川。祝大家中秋节快乐。最近组织了源码共读活动《1个月,200人,一起读了4周源码》,已经有超50人提交了笔记,群里已经有超1200人,感兴趣的可以点此链接扫码加我微信 ruochuan12 参与。本文经作者…

Matlab数理统计工具箱应用简介

1. 概述 Matlab 的数理统计工具箱是 Matlab 工具箱中较为简单的一个,其牵扯的数学知识是大家都很熟悉的数理统计,因此在本文中,我们将不再对数理统计的知识进行重复,仅仅列出数理统计工具箱的一些函数,这些…

matlab绘制路线图_绘制国际水域路线图

matlab绘制路线图Two years ago, Shopify was only available in English. Few people in Germany or Japan had heard about us. We had only just formed the international growth team to make Shopify available to people in their native tongue.两年前,Shop…

2021年江苏高考各科成绩查询,江苏2021年高考总分及各科分数

江苏2021年高考总分及各科分数2021-04-16 08:46:02文/董月江苏高考将实施“33”模式,即语数外三门必考,然后在物理、化学、生物、历史、政治、地理六门学科中任选三门进行考试,并计入总分。“6选3”中的3门以等级确定,折算成分数计…

碎片时间学习前端,我推荐这些~

大家好,我是若川。祝大家中秋节快乐。前端技术日新月异,发展迅速,作为一个与时俱进的前端工程师,需要不断的学习。这里强烈推荐几个前端开发工程师必备的优质公众号,希望对你有所帮助。大家可以像我一样,利…

windows 端口冲突解决

windows 端口冲突解决 命令 说明 ps:我这里要解决的80端口冲突。 命令 netstat -ano,列出所有端口的使用情况,在列表中我们观察被占用的端口。 netstat -aon|findstr “PID” 查看被占用端口对应的PID,这里的"PID"是上一…

使用selector改变按钮状态

在res/drawable文件夹新增一个文件,此文件设置了图片的触发状态,你可以设置 state_pressed,state_checked,state_pressed,state_selected,state_focused,state_enabled 等几个状态: …

figma下载_通过构建7个通用UI动画来掌握Figma中的动画

figma下载Originally published on my personal blog.最初发布在我的 个人博客上 。 Most designers will spend many hours perfecting every pixel of their static UI designs but will barely spend any time perfecting the transitions between these pages.大多数设计人…

怎么用计算机上的打印设备打印,电脑中怎么添加打印机设备

电脑中怎么添加打印机设备电脑中怎么添加打印机设备呢,下面小编介绍一下。具体如下:1. 打开电脑,点击“控制面板”图标2. 在如图页面,找到“硬件和声音”,点击打开3. 然后点击”设备和打印机“选项4. 打开后&#xff0…

三年经验前端社招——朴朴科技

大家好,我是若川,祝大家中秋节快乐。最近组织了源码共读活动《1个月,200人,一起读了4周源码》,已经有超50人提交了笔记,群里已经有超1200人,感兴趣的可以点此链接扫码加我微信 ruochuan12 参与。…

EL表达式和JSTL标准标签库

一、EL表达式 什么是EL表达式 EL(Express Lanuage)表达式可以嵌入在jsp页面内部减少jsp脚本的编写EL出现的目的是要替代jsp页面中脚本的编写。EL表达式的作用 EL最主要的作用是获得四大域中的数据// 1. pageContext ${pageScope.key}; // 2. request ${r…

(转)细说Cookie

原文地址:http://www.cnblogs.com/fish-li/archive/2011/07/03/2096903.htmlCookie虽然是个很简单的东西,但它又是WEB开发中一个很重要的客户端数据来源,而且它可以实现扩展性很好的会话状态, 所以我认为每个WEB开发人员都有必要对…

数学在计算机科学上的应用文献,浅谈数学在计算机科学及应用中的作用

论文编号:SXJY040论文字数:5690,页数:06浅谈数学在计算机科学及应用中的作用[摘要]:数学作为伴随人类历史发展长期积累的智慧结晶,是学习和运用科学技术的语言,代表着人类智慧的最高成就。本文阐述了数学发展的科学趋势,并对数学与…

三年经验前端社招——丰巢科技

大家好,我是若川。最近组织了源码共读活动《1个月,200人,一起读了4周源码》,已经有超50人提交了笔记,群里已经有超1200人,感兴趣的可以点此链接扫码加我微信 ruochuan12 参与。本文经作者lxcan 授权转载&am…

数字集成电路物理设计_数字世界的物理词汇

数字集成电路物理设计Nineteen Eighty-Four is my favourite novel; I must have read it half a dozen times. There are many reasons why I believe it to be a work of literary genius, but recently I’ve been thinking about one specific aspect of it that has a ver…

yum安装Docker失败No package docker available

2019独角兽企业重金招聘Python工程师标准>>> 原因:yum没有找到docker包,更新epel第三方软件库。 yum install epel-release再yum安装docker: yum install -y docker转载于:https://my.oschina.net/yuantangxi/blog/3033800

用html编写ASCII表,HTML ASCII

HTML ASCII 参考手册ASCII 是互联网上计算机之间使用的第一个字符集(编码标准)。ISO-8859-1(在 HTML 4.01 中是默认的)和 UTF-8(在 HTML5 中是默认的)都是基于 ASCII 建立的。ASCII 字符集ASCII 全称 "American Standard Code for Information Interchange"&#xff…

一文彻底搞懂前端监控 等推荐

大家好,我是若川。话不多说,这一次花了几个小时精心为大家挑选了20余篇好文,供大家阅读学习。本文阅读技巧,先粗看标题,感兴趣可以都关注一波,一起共同进步。前端点线面前端点线面 百度前端研发工程师&…

黑客宣言_情感设计宣言

黑客宣言重点 (Top highlight)I have a feeling that this article is going to be slightly different from the rest of the articles I’ve recently seen or read. Everybody seems to be fighting on topics such as “UX designer or Product Designer”? “UX/UI is ok…