nodejs漸入佳境[15]-express框架
阿新 • • 發佈:2018-12-01
最簡單的伺服器
1 |
const express = require('express'); |
訪問:
localhost:3000
localhost:3000/fast
訪問靜態檔案
建立public/help.html
1 |
<!DOCTYPE html> |
express.js:
1 |
const express = require('express'); |
訪問:
http://localhost:3000/help.html
會開啟public/help.html的頁面並顯示出來。
動態注入 express template engines
1 |
npm install --save hbs |
新建views/about.hbs:
1 |
<!DOCTYPE html> |
express.js:
1 |
const express = require('express'); |
訪問:
localhost/about
模版封裝
新建:views/partial/footer.hbs:
1 |
<Header> |
view/abut.hbs:
1 |
<!DOCTYPE html> |
express.js:
1 |
const express = require('express'); |
訪問:
localhost/about
express middleware
1 |
const express = require('express'); |
版權宣告: 本部落格所有文章除特別宣告外,均採用 CC BY 4.0 CN協議 許可協議。轉載請註明出處!