gpt4 book ai didi

json - 在浏览器中显示 Go App

转载 作者:数据小太阳 更新时间:2023-10-29 03:15:55 24 4
gpt4 key购买 nike

我编写了一个向 API 发出请求并获得 JSON 响应的应用程序。当我运行该应用程序时,它会在终端中显示 json。

go run main.go

我想让它在浏览器中运行,我找到了它,它允许我向浏览器打印一个字符串。

     func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "This is a string")
}

然后在main

http.HandleFunc("/", handler) 
log.Fatal(http.ListenAndServe("localhost:8000", nil))

现在我有一个字符串被打印到屏幕上,并且我有一个来 self 正在使用的 api 的 json 响应,我如何将 json 响应而不是字符串添加到浏览器?

是否最好将响应放入一个字符串中然后将其带到浏览器?

目前我正在像这样向终端打印 json 响应,

type Payload struct {
Page int
Results []Data
}

type Data struct {
PosterPath string `json:"poster_path"`
Adult bool `json:"adult"`
Overview string `json:"overview"`
ReleaseDate string `json:"release_date"`
GenreIds []int `json:"genre_ids"`
Id int `json:"id"`
OriginalTitle string `json:"original_title"`
OriginalLanguage string `json:"original_language"`
Title string `json:"title"`
BackdropPath string `json:"backdrop_path"`
Popularity float64 `json:"popularity"`
VoteCount int `json:"vote_count"`
Video bool `json:"video"`
VoteAverage float64 `json:"vote_average"`
}

然后在 main() 中我这样做,

    for i := 0; i < len(p.Results); i++ {
fmt.Println(
ImgUrl+p.Results[i].PosterPath, "\n", p.Results[i].Adult,
p.Results[i].Overview, "\n", p.Results[i].ReleaseDate,
p.Results[i].GenreIds, "\n", p.Results[i].Id,
p.Results[i].OriginalTitle, "\n", p.Results[i].OriginalLanguage,
p.Results[i].Title, "\n", ImgUrl+p.Results[i].BackdropPath,
p.Results[i].Popularity, "\n", p.Results[i].VoteCount,
p.Results[i].Video, "\n", p.Results[i].VoteAverage,
)

构建 Web 应用程序的 Go 方法是什么?我的最终目标是获取用户输入并根据他们提供的信息重新创建我的 API 调用。

最佳答案

如果您可以直接将 API 的响应发送给您的用户,那么请使用 io.Copy .您可以在将 api 请求转发给用户之前检查它是否成功,如果不成功则发送错误。

一些 API 在 header 中发送信息,例如您如何处理速率限制。因此,您也可以在中继之前检查 header 。

func handler(w http.ResponseWriter, r *http.Request) {
resp, err := http.Get("http://jsonplaceholder.typicode.com/posts") // your request to the api

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

if err == nil && resp.StatusCode == http.StatusOK {
io.Copy(w, resp.Body)
} else {
json.NewEncoder(w).Encode(err)
}
}

这可以避免在您的应用上进行任何新的分配。

如果您想按照评论中的说明向您的客户发送 html,请使用 html/template包。

您当然可以手动准备一个 html 字符串并将其发送给客户端。但我认为很明显,使用模板可以使代码更清晰、更易于维护。它还提供自动转义。

例如以下将呈现 Overview你的每一个部分Results来自 Payload p

func handler(w http.ResponseWriter, r *http.Request) {
// Make your api call and prepare the `Payload` object (from your example in the question)

for i := 0; i < len(p.Results); i++ {
fmt.Println(p.Results[i].Overview) // Prints to your terminal
}

// Following sends same information as above to the browser as html

t, err := template.New("foo").Parse(`
{{define "T"}}
<html><ul>{{range .Results}}<li>{{.Overview}}</li>{{end}}</ul></html>
{{end}}`)
err = t.ExecuteTemplate(w, "T", p) // This writes the client response
}

关于json - 在浏览器中显示 Go App,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35953120/

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