gob:未注册接口的类型:map [string] interface {}

Art*_*tem 19 go gob

gob 无法编码 map[string]interface{}

gob: type not registered for interface: map[string]interface {}
Run Code Online (Sandbox Code Playgroud)

http://play.golang.org/p/Si4hd8I0JE

package main

import (
    "bytes"
    "encoding/gob"
    "encoding/json"
    "fmt"
    "log"
)

func CloneObject(a, b interface{}) []byte {
    buff := new(bytes.Buffer)
    enc := gob.NewEncoder(buff)
    dec := gob.NewDecoder(buff)
    err := enc.Encode(a)
    if err != nil {
        log.Panic("e1: ", err)
    }
    b1 := buff.Bytes()
    err = dec.Decode(b)
    if err != nil {
        log.Panic("e2: ", err)
    }
    return b1
}

func main() {
    var a interface{}
    a = map[string]interface{}{"X": 1}
    b2, err := json.Marshal(&a)
    fmt.Println(string(b2), err)

    var b interface{}
    b1 := CloneObject(&a, &b)
    fmt.Println(string(b1))
}
Run Code Online (Sandbox Code Playgroud)

是否可以编码map[string]interface{}gob?我能用JSON编码它

Vol*_*ker 8

可能是的,但您必须事先注册您的类型.请参阅http://golang.org/pkg/encoding/gob/#Register.

详细信息记录在http://golang.org/pkg/encoding/gob/#hdr-Encoding_Details中

(它确实有助于查看Go文档:-)