1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-23 20:05:59 +00:00

move the hero binding logic to the new 'context.ReadBody'

Former-commit-id: d336bb1ec6ca66087fe9e8d28b38062508b45227
This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-04-08 17:27:23 +03:00
parent 837787104b
commit 5852327f30
3 changed files with 55 additions and 40 deletions

View File

@@ -180,6 +180,7 @@ New Context Methods:
- `context.MsgPack(interface{})` sends msgpack format data to the client
- `context.ReadProtobuf(ptr)` binds request body to a proto message
- `context.ReadMsgPack(ptr)` binds request body of a msgpack format to a struct
- `context.ReadBody(ptr)` binds the request body to the "ptr" depending on the request's Method and ContentType
- `context.Defer(Handler)` works like `Party.Done` but for the request life-cycle.
- `context.ReflectValue() []reflect.Value` stores and returns the `[]reflect.ValueOf(context)`
- `context.Controller() reflect.Value` returns the current MVC Controller value (when fired from inside a controller's method).