go-macaron / binding

Package binding is a middleware that provides request data binding and validation for Macaron.
Apache License 2.0
23 stars 17 forks source link

AutoBinding via Mapper #1

Closed rocklau closed 9 years ago

rocklau commented 9 years ago
type ContactForm struct {

    Email   string `form:"email"`

}

We hope that "Email" property in Form struct can be automap to form:email , We don't need to type 'form:email' by default.

This big feature should be used to simplify a lot of work.

unknwon commented 9 years ago

Added, default rule UnitPrice -> unit_price

rocklau commented 9 years ago

Great!