koahub.js 0.09 released, new hook mechanism
koahubjs released 0.09 with new hook mechanism
Add hook mechanism, controller hook and function hook
Fix the auto-loading bug and realize that in addition to automatically loading the exported default, other methods can also be automatically loaded
Remember the koahubjs hook development process
After using koahubjs to develop a project, it is always necessary to add some additional plug-in functions. In this case, changing the project code is too risky, so the hook mechanism is indispensable. koahubjs loads the hook into memory because the koahubjs framework does not have a built-in database, and loading into memory is more flexible.
Hook 1
Controller Hooks
When executing an http request, you want to call the method of another controller
Hook 2
Method hook
When executing an http request, you want to call a public function
Go directly to the code//Create hook.class.js<br>
//hooks definition<br>
// {<br>
// addOrder: [<br>
// '/admin/index/index'<br>
// ]<br>
// }<br>
<br>
export default class {<br>
constructor() {<br>
This.hooks = {};<br>
}<br>
<br>
Get() {<br>
return this.hooks;<br>
}<br>
<br>
Add(name, action) {<br>
let add = true;<br>
for (let key in this.hooks) {<br>
if (name == key) {<br>
This.hooks[key].push(action);<br>
add = false;<br>
}<br>
}<br>
if (add) {<br>
This.hooks[name] = [action];<br>
}<br>
<br>
return this.get();<br>
}<br>
<br>
run(name) {<br>
for (let key in this.hooks) {<br>
if (name == key) {<br>
for (let path of this.hooks[key]) {<br>
If (/w+(.*)$/.test(path)) {<br>
This.runFunction(path);<br>
–
This.runController(path);<br>
}<br>
}<br>
}<br>
}<br>
}<br>
<br>
runController(path) {<br>
let action = path.slice(path.lastIndexOf('/'));<br>
path = path.slice(0, path.lastIndexOf('/'));<br>
<br>
Let include = false;<br>
for (let _key in koahub.controllers) {<br>
if (_key == path) {<br> include = true;<br>
break;<br>
}<br>
}<br>
<br>
if (include) {<br>
let ctrl = koahub.controllers[path];<br>
let pros = Object.getOwnPropertyNames(ctrl.prototype).filter(function(value) {<br>
if (value == 'constructor') {<br>
return false;<br>
}<br>
return true;<br>
});<br>
<br>
let callFlag = true;<br>
for (let k in pros) {<br>
if ('/' + pros[k] == action) {<br>
Object.getPrototypeOf(new ctrl())[pros[k]].call(this);<br>
callFlag = false;<br>
}<br>
}<br>
<br>
if (callFlag) {<br>
console.error('Hook Not Found Method');<br>
}<br>
} else {<br>
console.error('Hook Not Found Controller');<br>
}<br>
}<br>
<br>
runFunction(value) {<br>
eval(`koahub.utils.${value}`);<br>
}<br>
}
钩子需要提前挂载到相应的节点上//开始挂载<br>
//controller钩子<br>
koahub.hook.add('hook1', '/admin/public/sendEmail');<br>
//function钩子<br>
koahub.hook.add('hook2', 'tools.add(1,2)');<br>
<br>
//调用钩子<br>
koahub.hook.run('hook1');<br>
koahub.hook.run('hook2');
util方法//util下的*.util.js会自动挂载到koahub.utils上<br>
//util/tools.util.js<br>
export function add(a, b) {<br>
console.log(a + b);<br>
return a + b;<br>
}<br>
<br>
export function dis(a, b) {<br>
console.log(a - b);<br>
return a - b;<br>
}
KoaHub.js – 基于 Koa.js 平台的 Node.js web 快速开发框架
安装npm install koahubjs --save
Star Github
https://github.com/einsqing/koahubjs
官网:http://js.koahub.com
wemall 开源微商城 ,微信商城,商城源码,三级分销,微生鲜,微水果,微外卖,微订餐---专业的o2o系统
wemall地址:http://www.wemallshop.com