第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在 HTML 文件中呈現(xiàn) GET 請求響應(yīng)

在 HTML 文件中呈現(xiàn) GET 請求響應(yīng)

Go
慕姐4208626 2023-05-15 10:29:38
我剛開始學(xué)習(xí) Go 中的 REST API,我不知道如何在我的 HTML 文件中顯示 GET 請求的響應(yīng)。我基本上所做的是創(chuàng)建一個GetCurrency()從第三方 API 獲取數(shù)據(jù)的函數(shù)?,F(xiàn)在我正在嘗試Currency在 HTML 文件中呈現(xiàn)響應(yīng),但我似乎沒有得到正確的結(jié)果,因為每當(dāng)加載本地主機時,/getcurrency我都會得到一個空白頁面,盡管我的.gohtml文件包含一個表單。這是我在 main.go 文件中的結(jié)構(gòu)type pageData struct {    Title    string    Currency string}這是我在 main.go 文件中的主要功能func main() {    http.HandleFunc("/", home)    http.HandleFunc("/home", home)    http.HandleFunc("/getcurrency", getCurrency)    http.ListenAndServe(":5050", nil)}這是我home執(zhí)行 HTML 的函數(shù)func home(w http.ResponseWriter, req *http.Request) {    pd := pageData{        Title: "Etmazec Home Page",    }    err := tpl.ExecuteTemplate(w, "homepage.gohtml", pd)    if err != nil {        log.Println(err)        http.Error(w, "Internal server error", http.StatusInternalServerError)    }}這是我在文件getCurrency()中的功能main.gofunc getCurrency(w http.ResponseWriter, req *http.Request) {    pd := pageData{        Title: "Welcome to the exchange rate website",    }    err := tpl.ExecuteTemplate(w, "currency.gohtml", pd)    response, err := http.Get("https://api.coinbase.com/v2/prices/spot?currency=USD")    if err != nil {        fmt.Printf("The http requst failed with error %s \n", err)    } else {        data, _ := ioutil.ReadAll(response.Body)        pd.Currency = string(data)        fmt.Println(string(data))    }}最后,這是我的currency.gohtml身體<body>    <h1>TOP HITS</h1>    <nav>        <ul>            <li><a href="/home">HOME PAGE</a>        </ul>    </nav>    <form action="/getcurrency" method="GET">        <label for="fname">Your Name</label>        <input type="text" name="fname">        <input type="submit">    </form>    {{.Currency}}      </body>這是我的home.gohtml文件 <!DOCTYPE html>    <html>    <head>        <meta charset="UTF-8">        <title>Title</title>    </head>    <link rel="stylesheet" href="/public/css/main.css">    <body>    </body>    </html>
查看完整描述

1 回答

?
蠱毒傳說

TA貢獻1895條經(jīng)驗 獲得超3個贊

fmt.Println(string(data))from func getCurrency() 打印到標(biāo)準(zhǔn)輸出。因此,您會在應(yīng)用程序控制臺中看到生成的 HTML,但它不會返回到瀏覽器。

https://golang.org/pkg/fmt/#Println:

Println 格式使用其操作數(shù)的默認(rèn)格式并寫入標(biāo)準(zhǔn)輸出。

您需要將字節(jié)發(fā)送到w http.ResponseWriter處理程序參數(shù)中:

fmt.Fprintln(w, string(data))

https://golang.org/pkg/fmt/#Fprintln


查看完整回答
反對 回復(fù) 2023-05-15
  • 1 回答
  • 0 關(guān)注
  • 284 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號