node.js自學日記——day4
阿新 • • 發佈:2018-12-15
P50、複習
P51、路徑問題
P52、 express demo
P53、 自動重啟服務
P54、express中的static-server靜態資源服務
P55、express 配置 art-template
//下載兩個
npm install --save art-template express-art-template
P57、在 express 中配置解析表單 post
除了表單提交和ajax請求有 post 請求,其他大多都是 get請求,
比如直接在位址列裡請求資料,永遠是get 請求
// 0. 安裝 express 框架 // 1. 進行引入 var express = require('express') // 2、建立伺服器應用程式,也就是原來的 http.createServer var app = express() // 引入中介軟體,可以幫助post表單提交 var bodyParser = require('body-parser') // 公開指定目錄,大多是靜態資源 app.use('/public/',express.static('./public/')) // 配置使用 art-template 模板引擎 app.engine('html',require('express-art-template')) // 當伺服器收到 get 請求 / 的時候, 將會處理回撥函式 app.get('/',function(req,res){ res.render('demo.html',{ name:"liuya" }) }) //相對於 server.listen app.listen(3000,function(){ console.log('app is running at port 3000') })
P58、crud 起步
P60、上午總結
P61、設計路由
P62、路由模組的提取
P63、處理新增和 body-parse 中介軟體