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