Convert string to int automatically when query and update

This commit is contained in:
Jinzhu 2013-11-30 19:56:20 +08:00
parent 41d8e2d132
commit 49fa9c7f4a
1 changed files with 8 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import (
"go/ast"
"reflect"
"regexp"
"strconv"
"time"
)
@ -141,6 +142,13 @@ func (m *Model) updatedColumnsAndValues(values map[string]interface{}, ignore_pr
if field.Interface() != value {
switch field.Kind() {
case reflect.Int, reflect.Int32, reflect.Int64:
if s, ok := value.(string); ok {
i, err := strconv.Atoi(s)
if m.do.err(err) == nil {
value = i
}
}
if field.Int() != reflect.ValueOf(value).Int() {
any_updated = true
field.SetInt(reflect.ValueOf(value).Int())