Koa專案搭建過程詳細記錄
阿新 • • 發佈:2019-02-01
Java中的Spring MVC加MyBatis基本上已成為Java Web的標配。Node JS上對應的有Koa、Express、Mongoose、Sequelize等。Koa一定程度上可以說是Express的升級版。許多Node JS專案已開始使用非關係型資料庫(MongoDB)。Sequelize對非關係型資料庫(MSSQL、MYSQL、SQLLite)做了支援。
Koa專案構建
cnpm install -g koa-generator
// 這裡一定要用koa2
koa2 /foo
Koa常用中介軟體介紹
koa-generator生成的應用已經包含常用中介軟體了,這裡僅說它裡面沒有用到的。
koa-less
app.use(require('koa-less')(__dirname + '/public'))
必須在static前use,不然會無效。
stylesheets資料夾下新建styles.less,並引入所有模組化less檔案。
@import 'foo.less';
@import 'bar.less';
這樣所有的樣式會被編譯成一個style.css。在模板(pug)中引用style.css就行了。
koa-session
// 設定app keys,session會根據這個進行加密 app.keys = ['some secret hurr']; // 配置session config const CONFIG = { key: 'bougie:session', /** (string) cookie key (default is koa:sess) */ maxAge: 1000 * 60 * 60 * 24 * 7, overwrite: true, /** (boolean) can overwrite or not (default true) */ httpOnly: true, /** (boolean) httpOnly or not (default true) */ signed: true, /** (boolean) signed or not (default true) */ rolling: true, /** (boolean) Force a session identifier cookie to be set on every response. The expiration is reset to the original maxAge, resetting the expiration countdown. (default is false) */ renew: false, /** (boolean) renew session when session is nearly expired, so we can always keep user logged in. (default is false)*/ }; // 應用中介軟體 app.use(session(CONFIG, app));
前端全棧開發學習交流圈:866109386。面向1-3年前端人員,幫助突破技術瓶頸,提升思維能力。
這個必須在router前use,不然會無效。
基本使用,可以當成一個普通物件
// 賦值
ctx.session.statu = value
// 取值
ctx.session.statu
// 刪除
ctx.session.statu = null
koa-proxies
用於代理配置
const proxy = require('koa-proxies') app.use(proxy('/octocat', { target: 'https://api.github.com/users', changeOrigin: true, agent: new httpsProxyAgent('http://1.2.3.4:88'), rewrite: path => path.replace(/^\/octocat(\/|\/\w+)?$/, '/vagusx'), logs: true
路由控制
開發主要集中在路由控制這裡,包括restful介面和模板渲染
獲取引數(request)
查詢引數(?param=a)
ctx.query.param
路由引數(/:id)
ctx.params.id
POST引數(JSON或Form)
ctx.request.body
請求迴應(response)
伺服器響應給客戶端的資料
restful
ctx.body = yourData
模板渲染
預設從views目錄開始,不許加檔案字尾
ctx.render('layout', yourData)
路由攔截
未登入時拒絕請求,這樣會返回404
const userAuth = (ctx, next) => {
let isLogin = ctx.session.isLogin
if(isLogin) return next()
}
router.use('/', userAuth)
此操作會包含在路由,如"/a"、"/b"等,需在子路由之前use,不然會無效