app.post('/test', function*(next) {
      var params = yield this.req.body();
      this.body = "post" + params.name;
    });