考虑以下代码,它响应 GET '/venues/:id':
func venueShow(w http.ResponseWriter, req *http.Request) {
// get ID from params
vars := mux.Vars(req)
id := vars["id"]
// initialise new struct
var venue Venue
// select by id and scan into struct
db.First(&venue, id).Scan(&venue)
// turn it to json
response := structToJSON(&venue)
// write headers and provide response
w.Header().Set("Content-Type", "application/json")
w.Write(response)
}
和:
func structToJSON (s interface{}) (response []byte) {
// turn it into pretty-ish json
response, err := json.MarshalIndent(&s, "", " ")
if err != nil {
return []byte("Venue does not exist")
}
// return the json as the reponse
return response
}
我的 structToJSON 函数将一个空接口作为参数,因为我想将各种不同的结构传递给该函数并将它们作为 JSON 输出。
然而,它并没有让我觉得很安全。如果有任何东西满足一个空接口,我可以将任何我想要的东西传递给那个函数,当 json.Marshal 尝试做它的事情时,可能会发生各种错误。这(我想)会被编译器捕获而不是在运行时捕获,但是有没有更安全的方法?
我可以为传递给它的每种不同类型的结构/模型复制 structToJSON 方法,但这不是很 DRY。
有只小跳蛙
相关分类