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

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

如何處理來(lái)自 go 的請(qǐng)求方法。我不使用圖書館

如何處理來(lái)自 go 的請(qǐng)求方法。我不使用圖書館

Go
慕工程0101907 2022-12-19 10:25:08
在此之前我使用 node js 并且很容易理解如何處理方法節(jié)點(diǎn) js 上的示例:    switch (request.method) {    case 'OPTIONS': return OptionsResponse(response);    case 'GET': return GetSwitch(request, response);    case 'POST': return PostSwitch(request, response);    case 'PUT': return PutSwitch(request, response);    case 'DELETE': return DeleteSwitch(request, response);    default: return ErrorMessage( "Sorry, this method not supported", 501, request);}但我不知道該怎么做package utilsimport (    "log"    "net/http"    "github.com/user/go_rest_api/src/view" // page view    "github.com/user/go_rest_api/src/api" // only api server);如何在 go 中實(shí)現(xiàn)相同的處理程序?func HandlerRequestFunc() {http.HandleFunc("/", view.Homepage);/*get method from api server */http.HandleFunc("/api", api.InfoFromApi);/* from db api handler */http.HandleFunc("/api/login", api.Login);http.HandleFunc("/api/registration", api.Registration);/* get your list db */http.HandleFunc("/api/db/list", api.DataBaseList);/* server start function */log.Fatal(http.ListenAndServe(":3000", nil));}如何不在函數(shù)內(nèi)部處理方法
查看完整描述

3 回答

?
拉風(fēng)的咖菲貓

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

也許這可以幫助你:


type MyHandler struct{}


func (self MyHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {


}


http.ListenAndServe(":3000", &MyHandler{})


查看完整回答
反對(duì) 回復(fù) 2022-12-19
?
qq_遁去的一_1

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

這是翻譯成 Go 的問(wèn)題中的 node.js 代碼。Go 代碼與 node.js 代碼非常相似。


func myHandler(response http.ResponseWriter, request *http.Request) {

    switch request.Method {

    case "OPTIONS":

        OptionsResponse(response, request)

    case "GET":

        GetSwitch(response, request)

    case "POST":

        PostSwitch(response, request)

    case "PUT":

        PutSwitch(response, request)

    case "DELETE":

        DeleteSwitch(response, request)

    default:

        http.Error(response, "Sorry, this method not supported", 501)

    }

}


查看完整回答
反對(duì) 回復(fù) 2022-12-19
?
鳳凰求蠱

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

我認(rèn)為您需要像這樣為您的代碼編寫響應(yīng)和請(qǐng)求。因?yàn)槭钦Z(yǔ)言的默認(rèn)包


func myHandler(w http.ResponseWriter, r *http.Request) {

switch request.Method {

case "OPTIONS":

    OptionsResponse(response, request)

case "GET":

    GetSwitch(response, request)

case "POST":

    PostSwitch(response, request)

case "PUT":

    PutSwitch(response, request)

case "DELETE":

    DeleteSwitch(response, request)

default:

    http.Error(response, "Sorry, this method not supported", 501)

}

}


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

添加回答

舉報(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)