這篇文章主要介紹了Node.js中間件的工作原理是什么,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
為廣安等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及廣安網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為做網(wǎng)站、成都做網(wǎng)站、廣安網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!你需要安裝一些東西來創(chuàng)建、使用和測試 Express 中間件。首先需要 Node 和 NPM。為確保已經(jīng)安裝,可以運(yùn)行:
npm -v && node -v
你應(yīng)該看到已安裝的 Node 和 NPM 版本。如果出現(xiàn)錯誤,則需要安裝 Node。所有例子都應(yīng)在 Node ver 8+ 和NPM ver 5+ 下使用。
本文使用了 Express 4.x 版。這很重要,因為從 3.x 版到 4.x 版有重大的更改。
首先我們使用 Express 最基本的內(nèi)置中間件。創(chuàng)建一個新項目并 npm 初始化它…
npm init npm install express --save Create server.js and paste the following code: const express = require('express'); const app = express(); app.get('/', (req, res, next) => { res.send('Welcome Home'); }); app.listen(3000);
假設(shè)你在 web 網(wǎng)絡(luò)服務(wù)器上正在使用 Node.js 和 Express 運(yùn)行Web應(yīng)用程序。在此應(yīng)用中,你需要登錄的某些頁面。
當(dāng) Web 服務(wù)器收到數(shù)據(jù)請求時,Express 將為你提供一個請求對象,其中包含有關(guān)用戶及其所請求數(shù)據(jù)的信息。 Express 還使你可以訪問響應(yīng)對象,可以在Web服務(wù)器響應(yīng)用戶之前對其進(jìn)行修改。這些對象通??s短為 req,res。
中間件函數(shù)是使用相關(guān)信息修改 req 和 res 對象的理想場所。例如用戶登錄后,你可以從數(shù)據(jù)庫中獲取其用戶詳細(xì)信息,然后將這些詳細(xì)信息存儲在 res.user
中。
async function userMiddleware (req, res, next) { try { const userData = await getUserData(req.params.id); //see app.get below if(userData) { req.user = userData; next(); } } catch(error) { res.status(500).send(error.message); //replace with proper error handling } }
如果出現(xiàn)錯誤,并且你不想執(zhí)行其他代碼,則不要調(diào)用該函數(shù)。請記住在這種情況下要發(fā)送響應(yīng),否則客戶端將會等待響應(yīng)直到超時。
var app = express(); //your normal route Handlers app.get('/user/:id', userMiddleware, userController);
你可以在中間件數(shù)組中或著通過使用多個 app.use
調(diào)用來鏈接中間件:
app.use(middlewareA); app.use(middlewareB); app.get('/', [middlewareC, middlewareD], handler);
Express 收到請求后,與請求相匹配的每個中間件都將會按照初始化的順序運(yùn)行,直到有終止操作為止。
因此,如果發(fā)生錯誤,則將按順序調(diào)用所有用于處理錯誤的中間件,直到其中一個不再調(diào)用 next() 函數(shù)調(diào)用為止。
express.Router 使用 express.Router 類創(chuàng)建模塊化的、可安裝的路由處理。路由實(shí)例是一個完整的中間件和路由系統(tǒng)。
var router = express.Router() //Load router-level middleware by using the router.use() and router.METHOD() functions. //The following example creates a router as a module, loads a middleware function in it, // defines some routes, and mounts the router module on a path in the main app. var express = require(‘express’); var router = express.Router(); // a middleware function with no mount path. This code is executed for // every request to the router // logging async function logMiddleware (req, res, next) { try { console.log(req.user.id, new Date()); next(); } catch() { res.status(500).send(error.message); } } // authentication async function checkAuthentication(req, res, next) => { // check header or url parameters or post parameters for token const token = req.body.token || req.query.token || req.headers['x-access-token'] || req.headers['authorization']; if (token) { try { // verifies secret req.decoded = await jwt.verify(token, config.secret) let checkUser = await authenticateTokenHelper.getUserDetail(req); // if everything is good, save to request for use in other routes if (checkUser) { req.user = req.decoded next() } else { return res.status(403).json({ message: responseMessage.noAuthorized }) } } catch (err) { return res.status(401).json({ message: responseMessage.invalidToken }) } } else { // if there is no token return res.status(400).json({ message: responseMessage.invalidRequest }) } } router.use(logMiddleware); router.get('/user, checkAuthentication, handler);
Express 有以下內(nèi)置的中間件功能:
express.static
提供靜態(tài)資源,例如 HTML 文件,圖像等。express.json
負(fù)載解析用 JSON 傳入的請求。express.urlencoded
解析傳入的用 URL 編碼的有效載荷請求。錯誤處理中間件始終采用四個參數(shù)(err,req,res,next)。你必須通過提供四個參數(shù)來將其標(biāo)識為錯誤處理中間件函數(shù)。即使你不需要使用 next 對象,也必須指定。否則 next 對象將被解釋為常規(guī)中間件,并將會無法處理錯誤。基本簽名如下所示:
app.use(function (err, req, res, next) { console.error(err.stack) res.status(500).send('Something broke!') })
例1:
app.get('/users', (req, res, next) => { next(new Error('I am passing you an error!')); }); app.use((err, req, res, next) => { console.log(err); if(!res.headersSent){ res.status(500).send(err.message); } });
在這種情況下,管道末端的錯誤處理中間件將會處理該錯誤。你可能還會注意到,我檢查了 res.headersSent
屬性。這只是檢查響應(yīng)是否已經(jīng)將標(biāo)頭發(fā)送到客戶端。如果還沒有,它將向客戶端發(fā)送 HTTP 500 狀態(tài)和錯誤消息。
例2:
你還可以鏈接錯誤處理中間件。通常以不同的方式處理不同類型的錯誤:
app.get('/users, (req, res, next) => { let err = new Error('I couldn\'t find it.'); err.httpStatusCode = 404; next(err); }); app.get('/user, (req, res, next) => { let err = new Error('I\'m sorry, you can\'t do that, Dave.'); err.httpStatusCode = 304; next(err); }); app.use((err, req, res, next) => { // handles not found errors if (err.httpStatusCode === 404) { res.status(400).render('NotFound'); } // handles unauthorized errors else if(err.httpStatusCode === 304){ res.status(304).render('Unauthorized'); } // catch all else if (!res.headersSent) { res.status(err.httpStatusCode || 500).render('UnknownError'); } next(err); });
在某些情況下,我們將向后端添加一些額外的功能。先安裝 Node.js 模塊獲取所需的功能,然后在應(yīng)用級別或路由器級別將其加載到你的應(yīng)用中。
示例:當(dāng) body-parser 處理 Content-Type 請求標(biāo)頭時,所有中間件都將使用解析的正文填充 req.body
屬性。
const express = require('express'); const bodyParser = require('body-parser'); const app = express(); app.use(bodyParser.urlencoded({extended:false})) app.use(bodyParser.json()) app.post('/save',(req,res)=>{ res.json({ "status":true, "payload":req.body }) } app.listen(3000,(req,res)=>{ console.log('server running on port') })
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享Node.js中間件的工作原理是什么內(nèi)容對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,遇到問題就找創(chuàng)新互聯(lián),詳細(xì)的解決方法等著你來學(xué)習(xí)!