我正在使用 POSTMAN 在 go lang 中处理 POST 请求。我希望以结构格式(json 数据结构)显示响应。为了显示普通字符串,我正在使用rw.Write([]byte(fmt.Sprintf("Hello, %s!", t.Name)))
我应该怎么做才能在响应正文中显示Struct?(使用 rw.write 方法)
fmt.Printf("%+v\n", m)
输出到 {ID:1 Name:John Smith Address:123 Main St City:San Francisco State:CA Zip:94113 Coordinate:{Latitude:37.7917618 Longitude:-122.3943405}}
这就是我想要在 Postman response 中准确显示的内容。
提前致谢:)
慕桂英4014372
相关分类