一、簡述
成都創(chuàng)新互聯(lián)公司專注于靜樂網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供靜樂營銷型網(wǎng)站建設,靜樂網(wǎng)站制作、靜樂網(wǎng)頁設計、靜樂網(wǎng)站官網(wǎng)定制、小程序開發(fā)服務,打造靜樂網(wǎng)絡公司原創(chuàng)品牌,更為您提供靜樂網(wǎng)站排名全網(wǎng)營銷落地服務。
二、項目結構
雖然是一個很簡單的后臺吧,但是還是應該有一個清晰的結構:
1.index.js 入口文件
2.model.js 模型文件
3.router.js 路由文件
4.views 頁面文件
– index.html 主頁
– new.html 新建頁
– edit.html 編輯頁
5.node_modules 模塊文件夾
6.db 數(shù)據(jù)庫文件夾
三、初始化項目
因為我們使用的是express框架,先用npm下載好express后,創(chuàng)建index.js快速搭配一個后臺
const express = require('express') const app = express() app.get('/',(req,res) => { res.send('hello world') }) app.listen(3000,() => { console.log('server is running...') })
打開終端使用node(推薦使用nodemon)運行后臺,終端顯示running而且localhost:3000渲染上了hello world證明express初始化成功了。
四、配置路由和渲染模塊
1.使用npm下載art-template和express-art-template,并在index.js中加入
app.engine('html',require('express-art-template'))
2.使用原生html的話是后端配置路由,所以我們將一開始對‘/'的get請求刪掉,轉而新建一個router.js并添加如下代碼:
const express = require('express') //創(chuàng)建路由實例 const router = express.Router() router.get('/',(req,res) => { res.render('index.html',{ books: [{ //可以先傳一個假數(shù)據(jù)測試下 name: 'a', author: 'aa', press: 'aaa' }] }) }) module.exports = router //暴露router
上面這段代碼就完成了后端加載主頁并將數(shù)據(jù)渲染上去的功能。
當然要把router引入到入口文件中,在index.js中加入:
const router = require('./router') app.use(router)
五、完成首頁
首頁沒啥好說的,上一個表格就得啦。
像each這種形式在后端是比較常見的表達,和foreach非常像,讀取數(shù)組按行渲染到html中。
<div> <table> <thead> <tr> <th>書名</th> <th>作者</th> <th>出版社</th> <th>操作</th> </tr> </thead> <tbody> {{ each books }} <tr> <td>{{ $value.name }}</td> <td>{{ $value.author }}</td> <td>{{ $value.press }}</td> <td> <!--這里路由后面再添加--> <a href="#" >編輯</a> <a href="#" >刪除</a> </td> </tr> {{ /each }} </tbody> </table> <a href="/new" >添加新書</a> <!--跳轉至添加頁--> </div>
六、數(shù)據(jù)庫連接+模型創(chuàng)建
const mongoose = require('mongoose') mongoose.connect('mongodb://localhost/book',{ useNewUrlParser: true , useUnifiedTopology: true }) const Schema = mongoose.Schema const BookSchema = new Schema({ name: { type: String, }, author: { type: String, }, press: { type: String, } }) module.exports = mongoose.model('Book',BookSchema)
七、路由導入數(shù)據(jù)庫
在router.js中引入Book
const Book = require('./model')這樣我們就可以在router中利用Book來進行數(shù)據(jù)庫的增刪改查了。
mongoose的方法都可以在文檔中查到。
渲染主頁就可以改成如下代碼,在數(shù)據(jù)庫中查找所有項然后傳到前端。
router.get('/',(req,res) => { Book.find((err,book) => { //book就是查找的所有對象是一個數(shù)組 res.render('index.html',{ books: book }) }) })
八、設計添加頁的html和路由
首先來分析一個添加頁的邏輯代碼,html部分我們需要一個表單,填寫書的具體信息后存到數(shù)據(jù)庫里,所以嘞,我們就需要一個get路由加載這個頁面,同時需要一個post請求接收前端發(fā)送過來的數(shù)據(jù)。
html部分很簡單,form+input就可以搞定,記得action的路徑要一致,name也要一樣哦。
<form action="/new" method="post"> <div > <label for="">書名</label> <input type="text" name="name" > </div> <div > <label for="">作者</label> <input type="text" name="author" > </div> <div > <label for="">出版社</label> <input type="text" name="press" > </div> <button type="submit">Submit</button> </form>
get路由非常簡單,直接渲染new.html即可。
但是post路由就有一個問題,如何拿到前臺傳過來的數(shù)據(jù)呢,這里就需要用到body-parser中間件了。它就可以獲取請求體(req.body)——包含了name、author和press三個屬性的json對象。
想要使用它先得npm安裝并引入,同時還要加上兩條語句(要放在use router的前面!很重要!)
app.use(bodyParser.urlencoded({ extended: false })) app.use(bodyParser.json())
接下來就是保存新增數(shù)據(jù)的操作了,在mongoose文檔中可以找到對應的save方法。
then是一個回調函數(shù),是保存后的操作。
router.post('/new',(req,res) => { console.log(req.body); new Book(req.body).save().then(() => { res.redirect('/') }) })
九、刪除和修改
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
本文名稱:Node.js實現(xiàn)簡單管理系統(tǒng)
URL地址:http://jinyejixie.com/article0/jpdjio.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站導航、小程序開發(fā)、網(wǎng)站收錄、全網(wǎng)營銷推廣、響應式網(wǎng)站、虛擬主機
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)