3
我有一個數據庫sql.NullBool。爲了解組json,我正在寫這個小函數。我可以將字節數組轉換爲字符串,只需簡單地將其轉換(字符串(數據))...對於布爾不是這樣。任何想法如何我可以轉換爲布爾?golang - 如何轉換字節切片到布爾?
type NullBool struct {
sql.NullBool
}
func (b *NullBool) UnmarshalJSON(data []byte) error {
b.Bool = bool(data) //BREAKS!!
b.Valid = true
return nil
}