在日常項(xiàng)目中,我喜歡用Django做后端, 因?yàn)榇蠖?/p>
10年積累的成都網(wǎng)站建設(shè)、成都網(wǎng)站制作經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有樺川免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
如果只是寫一個簡單服務(wù)的話, Express是更好的選擇, Express是基于nodejs的一個后端框架,特點(diǎn)是簡單,輕量, 容易搭建, 而且性能非凡,下面我們就用最少的步驟搭建一個Express的后端服務(wù)吧!
創(chuàng)建文件夾
mkdir express-simple-server
初始化項(xiàng)目
cd express-simple-server npm init -y
安裝Express
npm install express
在根目錄下創(chuàng)建 express-simple-sever.js
作為入口文件(我比較喜歡用項(xiàng)目名作為入口文件), 并修改package.json文件
{ "name": "express-simple-server", "version": "1.0.0", "description": "", "main": "express-simple-server.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "node express-simple-server.js" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "express": "^4.16.4" } }
為express-simple-server.js添加 首頁
, about頁面
, 定制化404頁面
, 定制化500頁面
的處理邏輯
const express = require('express'); const app = express(); // 如果在環(huán)境變量內(nèi), 設(shè)定了程序運(yùn)行端口,則使用環(huán)境變量設(shè)定的端口號, 否則使用3000端口 app.set('port', process.env.PORT || 3000); // 匹配根路由 / (如果不特別指明返回的狀態(tài)碼, 則默認(rèn)返回200) app.get('/', function(req, res) { res.type('text/plain'); res.send('訪問了首頁'); }); // 匹配/about路由 app.get('/about', function(req, res) { res.type('text/plain'); res.send('訪問了about頁面'); }); // 定制 404 頁面 (返回404狀態(tài)碼) app.use(function(req, res) { let currentTime = new Date(); res.type('text/plain'); res.status(404); res.send('404 - 你訪問的頁面可能去了火星\n' + currentTime); }); //定制 500 頁面 (返回500狀態(tài)碼) app.use(function(err, req, res, next) { let currentTime = new Date(); let errInfo = err.stack; res.type('text/plain'); res.status(500); res.send('500 - 服務(wù)器發(fā)生錯誤\n' + 'errInfo:' + errInfo + '\n' + 'currentTime:' + currentTime); }); // 監(jiān)聽服務(wù)端口, 保證程序不會退出 app.listen(app.get('port'), function() { console.log('Express 服務(wù)正在運(yùn)行在 http://localhost:' + app.get('port') + '; 按 Ctrl-C 關(guān)閉服務(wù).'); });
讓Express跑起來
npm run start
訪問根路由 /
訪問 /about
觸發(fā) 404
觸發(fā) 500
(故意改錯了一些代碼, 即可觸發(fā)此效果)
配置靜態(tài)文件目錄
// 匹配靜態(tài)文件目錄 app.use(express.static(__dirname + '/public'));
在根目錄下新建 public
文件夾, 在 public
文件夾內(nèi)新建 static
文件夾
這里的 public
不會顯示在url中, 為了方便判別靜態(tài)文件的url請求, 我們在public內(nèi)新建一個static文件夾, 這樣所有請求靜態(tài)文件的url,都會以static開頭(這里借鑒了django處理靜態(tài)文件的方法)
訪問 http://localhost:3000/static/index.html
訪問 http://localhost:3000/static/images/1.jpg
后端服務(wù)的處理邏輯都是大同小異的:
第一步: 收到前端請求
第二步: 匹配路由
第三步: 根據(jù)路由找到對應(yīng)的視圖函數(shù)
第四步: 視圖函數(shù)執(zhí)行內(nèi)部邏輯(查數(shù)據(jù)庫, 讀取html模板), 將產(chǎn)生的數(shù)據(jù), 返回給前端
使用handlebars模板引擎, 動態(tài)渲染html文件
安裝模板引擎 express-handlebars
npm install express-handlebars
在express-simple-server.js內(nèi)配置express-handlebars模板引擎
const exphbs = require('express-handlebars'); // 配置模板引擎 app.engine('html', exphbs({ layoutsDir: 'views', defaultLayout: 'layout', extname: '.html' })); app.set('view engine', 'html');
修改根路徑處理函數(shù)
// 匹配根路由 / (如果不特別指明返回的狀態(tài)碼, 則默認(rèn)返回200) app.get('/', function(req, res) { res.render('index', { layout: false, title: "首頁", personInfoList: [{ name: "王炮兒(一拳超人)", age: 20 }, { name: "炮姐(御坂美琴)", age: 15 }] }); });
在根目錄下創(chuàng)建文件夾 views
, 并創(chuàng)建 index.html
,
{{title}} 人物介紹
{{#each personInfoList}}昵稱:{{this.name}}
年齡:{{this.age}}
{{/each}}
最終效果
express-simple-server.js
源碼
const express = require('express'); const exphbs = require('express-handlebars'); const app = express(); // 配置模板引擎 app.engine('html', exphbs({ layoutsDir: 'views', defaultLayout: 'layout', extname: '.html' })); app.set('view engine', 'html'); // 如果在環(huán)境變量內(nèi), 設(shè)定了程序運(yùn)行端口,則使用環(huán)境變量設(shè)定的端口號, 否則使用3000端口 app.set('port', process.env.PORT || 3000); // 匹配靜態(tài)文件目錄 app.use(express.static(__dirname + '/public')); // 匹配根路由 / (如果不特別指明返回的狀態(tài)碼, 則默認(rèn)返回200) app.get('/', function(req, res) { res.render('index', { layout: false, title: "首頁", personInfoList: [{ name: "王炮兒(一拳超人)", age: 20 }, { name: "炮姐(御坂美琴)", age: 15 }] }); }); // 定制 404 頁面 (返回404狀態(tài)碼) app.use(function(req, res) { let currentTime = new Date(); res.type('text/plain'); res.status(404); res.send('404 - 你訪問的頁面可能去了火星\n' + currentTime); }); //定制 500 頁面 (返回500狀態(tài)碼) app.use(function(err, req, res, next) { let currentTime = new Date(); let errInfo = err.stack; res.type('text/plain'); res.status(500); res.send('500 - 服務(wù)器發(fā)生錯誤\n' + 'errInfo:' + errInfo + '\n' + 'currentTime:' + currentTime); }); // 監(jiān)聽服務(wù)端口, 保證程序不會退出 app.listen(app.get('port'), function() { console.log('Express 服務(wù)正在運(yùn)行在 http://localhost:' + app.get('port') + '; 按 Ctrl-C 關(guān)閉服務(wù).'); });
package.json
{ "name": "express-simple-server", "version": "1.0.0", "description": "", "main": "express-simple-server.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "node express-simple-server.js" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "express": "^4.16.4", "express-handlebars": "^3.0.0" } }
小結(jié):
如果你想通過一門編程語言實(shí)現(xiàn)全棧, javascript是你的不二之選(其實(shí)也沒得選,瀏覽器能運(yùn)行的圖靈完備的語言只有javascript), Express是一個很基礎(chǔ)的nodejs框架, 把Express學(xué)通, 其他nodejs后端框架也就一通百通了
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。