gpt4 book ai didi

json - 如何使用 Go 提供 JSON 响应?

转载 作者:IT老高 更新时间:2023-10-28 12:44:08 29 4
gpt4 key购买 nike

问题:目前我正在 func Index 中打印出我的回复像这样 fmt.Fprintf(w, string(response)) 但是,如何在请求中正确发送 JSON 以便它可以被 View 使用?

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, "", " ")
}

最佳答案

您可以设置您的内容类型 header ,以便客户知道期待 json

w.Header().Set("Content-Type", "application/json")

另一种将结构编码为 json 的方法是使用 http.ResponseWriter

构建编码器
// get a payload p := Payload{d}
json.NewEncoder(w).Encode(p)

关于json - 如何使用 Go 提供 JSON 响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31622052/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com