2014-11-19から1日間の記事一覧

Go Revel Validation その2

Requiredとfieldと私 {{with $field := field ".Name" .}} <p class="{{$field.ErrorClass}}"> <input type="text" size="10" name="{{$field.Name}}" class="form-control" value={{if $field.Flash}}"{{$field.Flash}}"{{else}}"{{$field.Value}}"{{end}}> <span class="error">{{$field.Error}}</span> </p> {{end}} とすると、エ…

Go Revel Validation

models内のValidation関数の変数名 func (hotel Hotel) Validate(v *revel.Validation) { controllers内のリクエスト受け取りの変数 func (c Hotels) ConfirmBooking(id int, hotel models.Hotel) revel.Result { hotel.Validate(c.Validation) if c.Validat…