# 배경 DB에서 Json으로 되어 있는 컬럼에서 원하는 값 추출하고 싶었다. # DB 컬럼 값 content {"name": "유지니", "id": 3954, "totalQuantity": 3, "registrationNo": "990101-2******"} # 코드 type ContentJson struct { Id int64 Content map[string]interface{} } func (contentService) ExtractValue(ctx context.Context, id int64) error { content, err := DonationDocuService().GetIssuedDonationReceipt(ctx, id) //원하는 값을 가져왔다. if err != nil { re..