Koa項目搭建過程詳細記錄

Java中的Spring MVC加MyBatis基本上已成爲Java Web的標配。Node JS上對應的有Koa、Express、Mongoose、Sequelize等。Koa必定程度上能夠說是Express的升級版。許多Node JS項目已開始使用非關係型數據庫(MongoDB)。Sequelize對非關係型數據庫(MSSQL、MYSQL、SQLLite)作了支持。css

Koa項目構建前端

cnpm install -g koa-generator
 
// 這裏必定要用koa2
koa2 /foo

Koa經常使用中間件介紹git

koa-generator生成的應用已經包含經常使用中間件了,這裏僅說它裏面沒有用到的。github

koa-less數據庫

app.use(require('koa-less')(__dirname + '/public'))

必須在static前use,否則會無效。 stylesheets文件夾下新建styles.less,並引入全部模塊化less文件。npm

@import 'foo.less';
@import 'bar.less';

這樣全部的樣式會被編譯成一個style.css。在模板(pug)中引用style.css就好了。api

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年前端人員,幫助突破技術瓶頸,提高思惟能力。restful

這個必須在router前use,否則會無效。 基本使用,能夠當成一個普通對象cookie

// 賦值
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,否則會無效

相關文章
相關標籤/搜索