This commit is contained in:
hoteas 2017-11-13 10:20:35 +00:00
parent 88d27fae06
commit 5ad07aa0a6

View File

@ -73,8 +73,10 @@ func ObjToSlice(obj interface{}, e ...*Error) Slice {
err = json.Unmarshal([]byte(obj.(string)), &v)
default:
v = nil
err = errors.New("没有合适的转换对象!")
v = Slice{}
var data []byte
data, err = json.Marshal(obj)
err = json.Unmarshal(data, &v)
}
}