Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Koa 中间件 #60

Open
hsipeng opened this issue Aug 3, 2018 · 0 comments
Open

Koa 中间件 #60

hsipeng opened this issue Aug 3, 2018 · 0 comments
Labels

Comments

@hsipeng
Copy link
Owner

hsipeng commented Aug 3, 2018

Koa 中间件

noop 回环

从前到后执行,再回环到上面的中间件
执行 next()
之后的内容

module.exports = function(){
	return async function(ctx, next){
		try{
			await next();
		}catch(e){
			console.log(`catch error: ${e}`)
		}
	}
}
@hsipeng hsipeng added the koa label Aug 3, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant