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

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

如何突破martini中間件

如何突破martini中間件

Go
繁花如伊 2023-08-14 17:48:49
簡而言之,如果我運(yùn)行一些中間件并http.Request確定該請求應(yīng)該得到 HTTP 422,我如何“突破”中間件鏈,并在不調(diào)用鏈中所有中間件功能的情況下提前返回?例如,如果我有這個(gè):func Routes(m *martini.ClassicMartini) {    m.Get("/cp/users", mw.AsJson, mw.RequestTimer, ctr.GetMany)}如果我調(diào)用return上面的任何中間件資金,據(jù)我所知,它仍然會調(diào)用鏈中注冊的所有中間件資金,因此ctr.GetMany始終會被調(diào)用。有沒有辦法使請求/響應(yīng)完成并告訴 martini 停止調(diào)用鏈中的所有函數(shù)?如果第一個(gè)返回值是整數(shù),我猜 martini 會假設(shè)它是狀態(tài)代碼。我目前最好的猜測是根據(jù)文檔: https://github.com/go-martini/martini#middleware-handlers我們可以用這個(gè):m.Use(func(c martini.Context, w http.ResponseWriter){    if reqIsMalformed() {        http.Error(w, "Bad request because xyz", 422)        return;    }    c.Next()})如果不滿足條件,我們就永遠(yuǎn)不會打電話c.Next()?
查看完整描述

1 回答

?
明月笑刀無情

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

我用路由器/中間件做了一個(gè)實(shí)驗(yàn),結(jié)果如下(有用的信息在最后):


func check0() {

    return

}


func check01() int {

    return 200

}


func check02() (int, string) {

    return 200, "boop"

}


func check03() bool {

    return true

}


func check04() string {

    return "04"

}


func check1(res http.ResponseWriter) string {

    return "1"

}


func check2(c martini.Context, res http.ResponseWriter) string {

    if true {

        return "hiii"

    }

    c.Next()

    return "2"

}


func check3(c martini.Context, res http.ResponseWriter) string {

    c.Next()

    return "3"

}


func check4(res http.ResponseWriter) {

    res.Write([]byte("4"))

}


func check5(c martini.Context, res http.ResponseWriter) (int, string, string) {

    res.Write([]byte("5.0"))

    c.Next()

    return 200, "5.1x", "5.1y"

}


func finish(res http.ResponseWriter) {

    fmt.Println("in finish")

    res.Write([]byte("all done"))

}


func Routes(m *martini.ClassicMartini) {

    m.Get("/cp/meta/test/middleware0", check0, finish)

    m.Get("/cp/meta/test/middleware01", check01, finish)

    m.Get("/cp/meta/test/middleware02", check02, finish)

    m.Get("/cp/meta/test/middleware03", check03, finish)

    m.Get("/cp/meta/test/middleware04", check04, finish)

    m.Get("/cp/meta/test/middleware1", check1, finish)

    m.Get("/cp/meta/test/middleware2", check2, finish)

    m.Get("/cp/meta/test/middleware3", check3, finish)

    m.Get("/cp/meta/test/middleware4", check4, finish)

    m.Get("/cp/meta/test/middleware5", check5, finish)

    m.Get("/cp/meta/echo_runtime_config", common.AsJson, common.RequestTimer, mw.BodyToMap, ctr.GetRuntimeConfig)

}

這是我使用 api 時(shí)的結(jié)果:


GET /cp/meta/test/middleware0 => 'all done'

GET /cp/meta/test/middleware01 => ''

GET /cp/meta/test/middleware03 => '<bool Value>'

GET /cp/meta/test/middleware02 => 'boop'

GET /cp/meta/test/middleware1 => '1'

GET /cp/meta/test/middleware04 => '04'

GET /cp/meta/test/middleware2 => 'hiii'

GET /cp/meta/test/middleware3 => 'all done3'

GET /cp/meta/test/middleware4 => '4'

GET /cp/meta/test/middleware5 => '5.0all done5.1x'

本來應(yīng)該添加到這個(gè)問題中。所以規(guī)則如下:

  1. 如果中間件函數(shù)返回任何內(nèi)容(又名 func 具有非 void 返回簽名),則不會調(diào)用后續(xù)中間件。

  2. 注入各種參數(shù)似乎對于是否調(diào)用后續(xù)中間件(包括 martini.Context 等)沒有影響。

  3. 使用 martini.Context.Next() 似乎僅對在調(diào)用所有其他剩余中間件后運(yùn)行掛鉤有用。

  4. 如果沒有返回任何內(nèi)容,剩下的中間件將會被調(diào)用,顯然你不需要調(diào)用c.Next()。

  5. 如果返回 int 作為返回列表中的第一個(gè)參數(shù),它將被解釋為 http 狀態(tài)代碼,第二個(gè)參數(shù)(如果有)將被寫入正文。如果第一個(gè)參數(shù)是字符串而不是 int,那么它將被寫入正文。我不確定是否使用或忽略第三個(gè)參數(shù),但它們似乎被忽略。


查看完整回答
反對 回復(fù) 2023-08-14
  • 1 回答
  • 0 關(guān)注
  • 190 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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