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

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

如何允許 CORS 使用多個端口?

如何允許 CORS 使用多個端口?

Go
炎炎設(shè)計 2022-07-04 16:15:30
我遇到了這段代碼,想在端口 1111、1112 和 1113 上允許 CORS,我該怎么做?router := mux.NewRouter().StrictSlash(true)router.HandleFunc("/all", All).Methods("GET")router.HandleFunc("/gotoT", Goto).Methods("GET")headers := handlers.AllowedHeaders([]string{"X-Requested-With", "Content-Type", "Authorization"})methods := handlers.AllowedMethods([]string{"GET", "POST", "PUT", "HEAD", "OPTIONS"})origins := handlers.AllowedOrigins([]string{"*"})log.Fatal(http.ListenAndServe(":1111", handlers.CORS(headers, methods, origins)(router)))在這個例子中,CORS 只監(jiān)聽端口 1111,所以我想添加更多端口,請幫忙?
查看完整描述

1 回答

?
MMTTMM

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

將它們放在單獨的 go 例程中:


router := mux.NewRouter().StrictSlash(true)

router.HandleFunc("/all", All).Methods("GET")

router.HandleFunc("/gotoT", Goto).Methods("GET")

headers := handlers.AllowedHeaders([]string{"X-Requested-With", "Content-Type", "Authorization"})

methods := handlers.AllowedMethods([]string{"GET", "POST", "PUT", "HEAD", "OPTIONS"})

origins := handlers.AllowedOrigins([]string{"*"})


corsRouter := handlers.CORS(headers, methods, origins)(router)


go func() {

    log.Fatal(http.ListenAndServe(":1111", corsRouter))

}()


go func() {

    log.Fatal(http.ListenAndServe(":1112", corsRouter))

}()


log.Fatal(http.ListenAndServe(":1113", corsRouter))


查看完整回答
反對 回復(fù) 2022-07-04
  • 1 回答
  • 0 關(guān)注
  • 172 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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