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));
這個必須在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,不然會無效