我无法将json字段article_type
解组为golang struct Article
。
我收到错误:
json: cannot unmarshal string into Go struct field Article.article_type of type models.ArticleType
str := []byte(`[{"created_at":1486579331,"updated_at":1486579331,"article_type":"news"}]`)
type Article struct {
ID uint `gorm:"primary_key"`
CreatedAt timestamp.Timestamp `json:"created_at"`
UpdatedAt timestamp.Timestamp `json:"updated_at"`
ArticleType ArticleType `json:"article_type"`
ArticleTypeId uint `gorm:"index" json:"-"`
type ArticleType struct {
ID uint `gorm:"primary_key" json:"id"`
CreatedAt timestamp.Timestamp `json:"created_at"`
UpdatedAt timestamp.Timestamp `json:"updated_at"`
Title string `gorm:"size:255" json:"title"`
Articles []Article `json:"articles"`
}
articles := []models.Article{}
if err := json.Unmarshal(str, &articles); err != nil {
panic(err)
}
我希望将"article_type":"news"
解析为:
Article.ArticleType.title =" news"
然后我可以保存文章对象,其中文章类型标题为" news"在数据库中。
答案 0 :(得分:2)
您可以让ArticleType
通过在其上定义UnmarshalJSON
方法来实现func (a *ArticleType) UnmarshalJSON(b []byte) error {
a.Title = string(b)
return nil
}
界面:
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
alertDialog.setView(R.layout.rateme);
} else {
alertDialog.setMessage("Please Rate and Review");
}