地址:https://github.com/koajs/examples/blob/master/blog/index.js
function *list() {
this.body = yield render('list', { posts: posts });
}
这里为什么需要yield,有什么目的么? yield的知识我是知道的,也知道用法,但是这里为什么放了一个yield?
地址:https://github.com/koajs/examples/blob/master/blog/index.js
function *list() {
this.body = yield render('list', { posts: posts });
}
这里为什么需要yield,有什么目的么? yield的知识我是知道的,也知道用法,但是这里为什么放了一个yield?