一個后端架構(gòu)
2021-08-16
const http = require('http');
http.createServer((request, response) => {
// 請求的入口
}).listen(8080);
復(fù)制代碼
關(guān)于如何使用和對象來完成一個請求響應(yīng),大部分教程中都有提到。也可以查看Node的中文文檔。這里就不詳細(xì)介紹了。
處理靜態(tài)文件
這里我們使用-,使用npm安裝這個模塊,在項目根目錄下創(chuàng)建一個文件夾并放一些靜態(tài)頁面,創(chuàng)建一個.js文件:
const http = require('http');
const serveStatic = require('serve-static');
const publicPath = 'public';
const staticHandler = serveStatic(publicPath);
http.createServer((request, response) => {
staticHandler(request, response, () => {
// 失敗回調(diào)
})
}).listen(8080);
復(fù)制代碼
以上代碼是處理靜態(tài)文件最簡單的配置。需要注意的是()是異步操作。您可以通過使用 Node.js 運行 .js 來訪問目錄中的文件。
簡單路由
要實現(xiàn)路由,首先要獲取請求路徑。 Node內(nèi)置url模塊的引入可以幫助我們解決這個問題
const url = require('url');
const http = require('http');
http.createServer((request, response) => {
const path = url.parse(request.url).pathname;
if (path === '/')
response.end('path is /');
else if (path === '/index')
response.end('path is /index');
else {
response.statusCode = 404;
response.end('Not Found');
}
}).listen(8080);
復(fù)制代碼
這是最簡單的路由實現(xiàn)之一。需要注意的是,無論如何都必須調(diào)用.end()來終止請求,否則瀏覽器會一直等待對應(yīng)的狀態(tài)
在實際開發(fā)中,我們不會使用一系列的if...else來處理路由,一般創(chuàng)建一個路由映射表,加上靜態(tài)文件處理:
const url = require('url');
const http = require('http');
const serveStatic = require('serve-static');
const publicPath = 'public';
const staticHandler = serveStatic(publicPath);
const map = new Map([
['/', response => {
response.end('path is /');
}],
['/index', response => {
response.end('path is /index');
}]
]);
http.createServer((request, response) => {
const path = url.parse(request.url).pathname;
if (map.has(path)) {
let handler = map.get(path);
handler(response);
} else
staticHandler(request, response, () => {
response.statusCode = 404;
response.end('Not Found');
});
}).listen(8080);
復(fù)制代碼
當(dāng)前服務(wù)的處理邏輯是:先找到對應(yīng)的路由,如果有,交給路由的回調(diào)處理,如果沒有,在目錄中尋找靜態(tài)文件,返回404錯誤如果沒有
結(jié)論
我還是為這個系列多寫了幾篇文章,但是我發(fā)現(xiàn)寫的越多,對PHP越無所謂,所以打算放棄這個前綴,以后的文章會專注于Node的web發(fā)展
感謝閱讀php開發(fā)筆記php開發(fā)筆記,歡迎指出文中錯誤,歡迎交流
接下來的幾篇文章將介紹一個基于我最近在研究的開源框架的更復(fù)雜的后端架構(gòu)。尋求關(guān)注和star