0
我有下面的結構設置一個指向一個領域,需要一些字段是nulluble,所以我使用指針,主要是爲了處理SQL空使用反射
type Chicken struct{
Id int //Not nullable
Name *string //can be null
AvgMonthlyEggs *float32 //can be null
BirthDate *time.Time //can be null
}
所以當我這樣做我可以看到,JSON結果可以有值類型空而這正是我想要
stringValue:="xx"
chicken := &Chicken{1,&stringValue,nil,nil}
chickenJson,_ := json.Marshal(&chicken)
fmt.Println(string(chickenJson))
但是當我嘗試做這一切使用反射
var chickenPtr *Chicken
itemTyp := reflect.TypeOf(chickenPtr).Elem()
item := reflect.New(itemTyp)
item.Elem().FieldByName("Id").SetInt(1)
//the problem is here not sure how to set the pointer to the field
item.Elem().FieldByName("Name").Set(&stringValue) //Error caused by this line
itemJson,_ := json.Marshal(item.Interface())
fmt.Println(string(itemJson))
我與反射部得到的是下面的錯誤
cannot use &stringValue (type *string) as type reflect.Value in argument to item.Elem().FieldByName("Name").Set
我到底做錯了什麼?
這裏是一個GoPlay http://play.golang.org/p/0xt45uHoUn