golang mapstructure가 비어 있는 문제로 바뀌었습니다.
2212 단어 go
//struct
func (s *commentRedisStore) CommentMapToStruct(commentInfo *model.CommentInfo, mapValue map[string]string) error {
if len(mapValue) == 0 {
return errors.New("len(mapValue) == 0")
}
decoder, _ := mapstructure.NewDecoder(&mapstructure.DecoderConfig{
WeaklyTypedInput: true,
Result: commentInfo,
})
_ = decoder.Decode(mapValue)
//
if mapValue["createdAt"] != "" {
timeStr := mapValue["createdAt"]
commentInfo.CreatedAt, _ = time.Parse("2006-01-02T15:04:05Z07:00", timeStr)
}
if mapValue["updatedAt"] != "" {
timeStr := mapValue["updatedAt"]
commentInfo.UpdatedAt, _ = time.Parse("2006-01-02T15:04:05Z07:00", timeStr)
}
if mapValue["deletedAt"] != "" {
timeStr := mapValue["deletedAt"]
deletedAt, _ := time.Parse("2006-01-02T15:04:05Z07:00", timeStr)
commentInfo.DeletedAt = &deletedAt
} else {
commentInfo.DeletedAt = nil
}
return nil
}
type CommentInfo struct {
SN int64 `json:"sn"`
ID string `gorm:"-" json:"id"` //
ArticleSN int64 `json:"articleSN"`
ArticleID string `gorm:"-" json:"articleID"` //
UserID int `json:"userID"` // id
Content string `json:"content"` //
ReplyTo int `json:"replyTo"` // id
ParentSN int64 `json:"parentSN"`
Parent string `gorm:"-" json:"parent"` // sn( , )
PlateSN int64 `json:"plateSN"`
Plate string `gorm:"-" json:"plate"` //
CreatedAt time.Time `json:"createdAt"` //
UpdatedAt time.Time `json:"updatedAt"` //
DeletedAt *time.Time `json:"deletedAt"` //
VoteUp int64 `json:"voteUp"` //
VoteDown int64 `json:"voteDown"` //
RepliedTotal int64 `json:"repliedTotal"` //
Status int64 `json:"status"` // ( 1, 2)
ReviewStatus int64 `json:"reviewStatus"` // ( 1, 2, 3)
}
Plate string `gorm: "-"json: "plate"//기사 소속 섹션
필드는 일치해야 합니다(대소문자는 상관없습니다). 그렇지 않으면 위의 방법이 돌릴 수 없습니다
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Go Fiber 및 PlanetScale로 REST API 구축 - 4부다시 사용자 핸들러에 UpdateUser라는 새 함수를 추가합니다. 업데이트 사용자를 main.go에 등록 이제 응용 프로그램을 다시 실행하십시오. 이전에 생성한 사용자를 업데이트합니다. 응답 사용자가 존재하지 않을...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.