问题:目前我在func Index
打印出我的回复
像这样fmt.Fprintf(w, string(response))
但是,如何在请求中正确发送JSON以便它可以被视图使用?
package main
import (
"fmt"
"github.com/julienschmidt/httprouter"
"net/http"
"log"
"encoding/json"
)
type Payload struct {
Stuff Data
}
type Data struct {
Fruit Fruits
Veggies Vegetables
}
type Fruits map[string]int
type Vegetables map[string]int
func Index(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
response, err := getJsonResponse();
if err != nil {
panic(err)
}
fmt.Fprintf(w, string(response))
}
func main() {
router := httprouter.New()
router.GET("/", Index)
log.Fatal(http.ListenAndServe(":8080", router))
}
func getJsonResponse()([]byte, error) {
fruits := make(map[string]int)
fruits["Apples"] = 25
fruits["Oranges"] = 10
vegetables := make(map[string]int)
vegetables["Carrats"] = 10
vegetables["Beets"] = 0
d := Data{fruits, vegetables}
p := Payload{d}
return json.MarshalIndent(p, "", " ")
}
答案 0 :(得分:87)
您可以设置内容类型标题,以便客户知道期望json
w.Header().Set("Content-Type", "application/json")
将结构编组为json的另一种方法是使用http.ResponseWriter
// get a payload p := Payload{d}
json.NewEncoder(w).Encode(p)
答案 1 :(得分:17)
其他用户在编码时评论Content-Type
为plain/text
。您必须先设置Content-Type
w.Header().Set
,然后设置HTTP响应代码w.WriteHeader
。
如果您先致电w.WriteHeader
,请在获得w.Header().Set
后致电plain/text
。
示例处理程序可能如下所示;
func SomeHandler(w http.ResponseWriter, r *http.Request) {
data := SomeStruct{}
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusCreated)
json.NewEncoder(w).Encode(data)
}
答案 2 :(得分:15)
您可以在getJsonResponse
函数 -
jData, err := json.Marshal(Data)
if err != nil {
// handle error
}
w.Header().Set("Content-Type", "application/json")
w.Write(jData)
答案 3 :(得分:1)
在gobuffalo.io框架中我得到了这样的工作:
// say we are in some resource Show action
// some code is omitted
user := &models.User{}
if c.Request().Header.Get("Content-type") == "application/json" {
return c.Render(200, r.JSON(user))
} else {
// Make user available inside the html template
c.Set("user", user)
return c.Render(200, r.HTML("users/show.html"))
}
然后当我想获得该资源的JSON响应时,我必须将“Content-type”设置为“application / json”并且它可以工作。
我认为Rails有更方便的方法来处理多种响应类型,到目前为止我在gobuffalo中看不到相同的内容。
答案 4 :(得分:0)
你可以使用这个package renderer,我已经写过来解决这类问题,它是一个提供JSON,JSONP,XML,HTML等的包装器。