像Go这样的类型Int64,String并且不能存储null值,因此我发现可以为此使用sql.NullInt64和sql.NullString。
Int64
String
但是,当我在Struct中使用它们,并使用json包从Struct生成JSON时,格式与使用常规Int64和String类型时不同。
JSON具有附加级别,因为sql.Null ***也是Struct。
有没有很好的解决方法,还是应该在我的SQL数据库中不使用NULL?
像sql.NullInt64这样的类型不会对JSON封送或拆封实施任何特殊处理,因此适用默认规则。由于类型是结构,因此将其编组为对象,并将其字段作为属性。
sql.NullInt64
解决此问题的一种方法是创建自己的实现json.Marshaller/ json.Unmarshaler接口的类型。通过嵌入sql.NullInt64类型,我们可以免费获得SQL方法。像这样:
json.Marshaller
json.Unmarshaler
type JsonNullInt64 struct { sql.NullInt64 } func (v JsonNullInt64) MarshalJSON() ([]byte, error) { if v.Valid { return json.Marshal(v.Int64) } else { return json.Marshal(nil) } } func (v *JsonNullInt64) UnmarshalJSON(data []byte) error { // Unmarshalling into a pointer will let us detect null var x *int64 if err := json.Unmarshal(data, &x); err != nil { return err } if x != nil { v.Valid = true v.Int64 = *x } else { v.Valid = false } return nil }
如果您使用此类型代替sql.NullInt64,则应按预期进行编码。
您可以在此处测试此示例:http : //play.golang.org/p/zFESxLcd-c