2016-07-18 21:16:35 +08:00

8 lines
124 B
JavaScript

module.exports = function* () {
yield this.render('js.html', {
context: {
a: this.request.body.a
}
});
};