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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用 Golang + Gin + Docker 時(shí)出現(xiàn)“localhost 沒(méi)有發(fā)送任何數(shù)據(jù)”

使用 Golang + Gin + Docker 時(shí)出現(xiàn)“localhost 沒(méi)有發(fā)送任何數(shù)據(jù)”

Go
慕田峪7331174 2022-11-28 10:37:48
我已經(jīng)按照在本地完美運(yùn)行的 youtube 教程創(chuàng)建了一個(gè)簡(jiǎn)單的 API。將應(yīng)用程序容器化并運(yùn)行容器后,我無(wú)法訪問(wèn) http://localhost:8080 上的 API。我猜它與我在 dockerfile 中使用的端口設(shè)置有關(guān),但我不確定。main.go 文件:package mainimport (    "net/http"    "github.com/gin-gonic/gin"    "errors")type phone struct{    ID       string `json:"id"`    Model    string `json:"model"`    Year     string `json:"year"`    Quantity int    `json:"quantity"`}var phones = []phone{    {ID: "1", Model: "iPhone 11", Year: "2019", Quantity: 4},    {ID: "2", Model: "iPhone 6", Year: "2014", Quantity: 9},    {ID: "3", Model: "iPhone X", Year: "2017", Quantity: 2},}func phoneById(c *gin.Context) {    id := c.Param("id")    phone, err := getPhoneById(id)    if err != nil {        c.IndentedJSON(http.StatusNotFound, gin.H{"message": "Phone not found."})        return    }    c.IndentedJSON(http.StatusOK, phone)}func checkoutPhone(c *gin.Context) {    id, ok := c.GetQuery("id")    if !ok {        c.IndentedJSON(http.StatusBadRequest, gin.H{"Message": "Missing id query paramater"})        return    }    phone, err := getPhoneById(id)    if err != nil {        c.IndentedJSON(http.StatusBadRequest, gin.H{"Message": "Phone not found"})        return    }    if phone.Quantity <= 0 {        c.IndentedJSON(http.StatusBadRequest, gin.H{"Message": "Phone not available."})        return    }    phone.Quantity -= 1    c.IndentedJSON(http.StatusOK, phone)}func returnPhone(c *gin.Context) {    id, ok := c.GetQuery("id")    if !ok {        c.IndentedJSON(http.StatusBadRequest, gin.H{"Message": "Missing id query paramater"})        return    }    phone, err := getPhoneById(id)    if err != nil {        c.IndentedJSON(http.StatusBadRequest, gin.H{"Message": "Phone not found"})        return    }    if phone.Quantity <= 0 {        c.IndentedJSON(http.StatusBadRequest, gin.H{"Message": "Phone not available."})        return    }    phone.Quantity += 1    c.IndentedJSON(http.StatusOK, phone)}
查看完整描述

1 回答

?
尚方寶劍之說(shuō)

TA貢獻(xiàn)1788條經(jīng)驗(yàn) 獲得超4個(gè)贊

您需要綁定到容器內(nèi)部的公共網(wǎng)絡(luò)接口。因?yàn)槊總€(gè)容器都是自己的host,當(dāng)你在里面綁定loopback接口的時(shí)候,外界就訪問(wèn)不到了。

router.Run("0.0.0.0:8080")

此外,確保在運(yùn)行容器時(shí)發(fā)布此端口。

docker run --publish 8080:8080 myapp

你實(shí)際上用你的環(huán)境變量表明了正確的意圖,但它們沒(méi)有在你的代碼中使用。

ENV HOST 0.0.0.0
ENV PORT 8080

您可以使用os.Getenvos.LookupEnv從您的代碼中獲取這些變量并使用它們。


查看完整回答
反對(duì) 回復(fù) 2022-11-28
  • 1 回答
  • 0 關(guān)注
  • 214 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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