1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-10 02:30:18 +00:00

session:support struct.

gob.Register(v)
This commit is contained in:
astaxie
2014-05-17 00:43:51 +08:00
parent c5c806b58e
commit c265786251
2 changed files with 12 additions and 0 deletions

View File

@ -34,6 +34,9 @@ func init() {
}
func EncodeGob(obj map[interface{}]interface{}) ([]byte, error) {
for _, v := range obj {
gob.Register(v)
}
buf := bytes.NewBuffer(nil)
enc := gob.NewEncoder(buf)
err := enc.Encode(obj)