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

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

如何在 Vercel 無(wú)服務(wù)功能中使用 Go Gin?

如何在 Vercel 無(wú)服務(wù)功能中使用 Go Gin?

Go
慕娘9325324 2022-12-13 11:13:45
如何制作一個(gè)文件來(lái)處理 vercel 無(wú)服務(wù)器功能的所有路由?默認(rèn)情況下它使用內(nèi)置處理程序有沒(méi)有辦法使用 gin 模塊來(lái)做同樣的事情?package handlerimport "github.com/gin-gonic/gin"/* get the post data and send the same data as response */func Hi(c *gin.Context) {    c.JSON(200, gin.H{        "message": "Hello World!",    })}
查看完整描述

1 回答

?
慕容3067478

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

如果我正確理解了你的問(wèn)題,你只需要?jiǎng)?chuàng)建 struct Handler 并創(chuàng)建一個(gè)方法“InitRoutes”返回帶有所有 handleFuncs 的路由器


handleFuncs 也應(yīng)該是 Handler 的方法


例如:


type Handler struct {

    // here you can inject services

}


func NewHandler(services *service.Service) *Handler {

    return &Handler{}

}


func (h *Handler) InitRoutes() *gin.Engine {

    router := gin.New()


    auth := router.Group("/group")

    {

        auth.POST("/path", h.handleFunc)

        auth.POST("/path", h.handleFunc)

    }


    return router

}

之后你應(yīng)該將它注入你的 httpServer


srv := http.Server{

        Addr:           ":" + port,

        Handler:        Handler.InitRoutes(),

        MaxHeaderBytes: 1 << 20,

        ReadTimeout:    10 * time.Second,

        WriteTimeout:   10 * time.Second,

    }


srv.ListenAndServe()


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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