```
//引包
var express = require('express');
var bodyParser = require('body-parser');
//創建應用程序
var app = express();
//使用art-template
app.engine('html', require('express-art-template'));
//配置 body-parser 中間件 (插件,專門用來解析表單POST請求體)
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
//設置靜態資源訪問
app.use('/public', express.static('./public/'));
app.get('/', function (req, res) {
res.render('index.html', {
comments: comments
});
});
app.get('/post', function (req, res) {
res.render('post.html');
});
// app.get('/pinglun', function (req, res) {
// var comment = req.query;
// comments.unshift(comment);
// res.redirect('/');
// })
// 當以post請求請求/post的時候,執行指定的處理函數
app.post('/post', function (req, res) {
// console.log('收到表單post請求了');
//1. 獲取表單POST請求的數據
//2. 處理
//3. 發送響應
//req.query 只能獲取get請求的數據
var comment = req.body;
comments.unshift(comment);
res.redirect('/');
// res.send('post');
});
app.listen(3000, function () {
console.log('Express is running');
});
var comments = [
{
name: '張三',
message: '今天天氣不錯',
dateTime: '2018-12-12'
},
{
name: '張11',
message: '44今天天氣不錯',
dateTime: '2018-12-12'
},
{
name: '張22',
message: '11今天天氣不錯',
dateTime: '2018-12-1'
},
{
name: '張33',
message: '22今天天氣不錯',
dateTime: '2018-2-12'
}
];
```
- 1. Node.js介紹
- 2. Node讀取文件
- 3. Node寫文件
- 4. http服務
- 5. 發送文件中的數據以及Content-Type內容類型
- 5.1 仿制接口
- 6. Node.js中的模塊系統
- 7. 在node中使用模板引擎
- 8. 服務端渲染與客戶端渲染
- 9. exports 與 module.exports的區別
- 10. npm
- 11. Express
- 0. 安裝
- 1. 開放端口以及靜態資源
- 2. 基本路由
- 3. Express使用art-template
- 4. 在Express中獲取表單POST請求體數據
- 5. 使用Express路由模塊
- 6. Express 跨域
- 7. md加密
- 12. nodemon實現代碼修改自動重啟
- 13. MongoDB
- 13. MongoDB安裝與介紹
- 14. 啟動和關閉mongoDB
- 15. 連接和退出MongoDB數據庫
- 16. 基本命令
- 17. 在node中操作mongodb數據庫
- 18. mongoDB開始&新增數據
- 19. 查詢
- 附:Express留言板項目
- 20. path 路徑操作模塊
- 21. Node 中的其他成員
- 22. art-template中的include用法
- 附:學生信息管理系統