php小編柚子在這裡為大家解答一個常見的問題:為什麼在使用mux.Vars()方法時回傳的是一個空映射?這個問題在開發過程中可能會遇到,通常是由於一些配置或使用上的問題所導致的。在本文中,我們將詳細討論可能的原因,並給出解決方案,幫助開發者快速解決這個問題。讓我們一起來看看吧!
我從 mux.vars[] 得到一個空的 map[]。
追蹤問題後,似乎是一個空的map[]
通過了我的多個檔案。
在同一個文件中:我已將另一個文件作為模組導入(我相信)在 import
package main import( "github.com/ny0ttt/go-bookstore/pkg/controllers" //note that this is imported from powershell, go mod init "github.com/ny0ttt/go-bookstore" )
運行 go run main.go
後,我得到了map[]作為map[id]
在不同的文件中:
按照與上一個相同的導入方式,我收到一個空的map[]
#這是我的檔案結構
go-test/cmd/main/main.exe go-test/cmd/main/main.go go-test/pkg/config/app.go go-test/pkg/models/models.go go-test/pkg/controllers/book-controller.go go-test/pkg/utils/utils.go go-test/go.sum go-test/go.mod
我的 mod 檔包含
module github.com/ny0ttt/go-bookstore go 1.20 require ( github.com/go-sql-driver/mysql v1.5.0 github.com/gorilla/mux v1.8.0 github.com/jinzhu/gorm v1.9.16 ) require github.com/jinzhu/inflection v1.0.0 // indirect
這是我的程式碼:
在我的控制器中
func getbookbyid(w http.responsewriter, r *http.request){ vars := mux.vars(r) bookid := vars["id"] id, err := strconv.parseint(bookid, 0, 0) if err != nil{ fmt.println("error while parsing") fmt.println(r) fmt.println(bookid) fmt.println(vars) } bookdetails, _ := models.getbookbyid(id) //mthis model returns 2 variable but we will be using only one of them. refer models res, _ := json.marshal(bookdetails) w.header().set("content-type","pkglication/json") w.writeheader(http.statusok) w.write(res) }
在我的路線中
func main() { r := mux.newrouter() //routes.registerbookstoreroutes(r) r.handlefunc("/book/", controllers.getbook).methods("get") r.handlefunc("/book/", controllers.createbook).methods("post") r.handlefunc("/book/{id}", controllers.getbookbyid).methods("get") r.handlefunc("/book/{bookid}", controllers.updatebook).methods("put") r.handlefunc("/book/{bookid}", controllers.deletebook).methods("delete") http.handle("/", r) log.fatal(http.listenandserve(":2222", r)) // creating a server }
輸出
error while parsing &{GET /book/1 HTTP/1.1 1 1 map[Accept:[*/*] Accept-Encoding:[gzip, deflate, br] Connection:[keep-alive] Postman-Token:[a28eebe1-b6d4-4aff-89ed-d3b93a4ed1df] User-Agent:[PostmanRuntime/7.32.3]] {} <nil> 0 [] false :2222 map[] map[] <nil> map[] 127.0.0.1:52035 /book/1 <nil> <nil> <nil> 0xc000282a20} map[]
注意:我列印出這些值,以便我可以追蹤哪裡出錯了,*http.request
沒有映射任何值?我不確定返回 http.request 的 map[] 應該是什麼樣子。
我尋找解決方案,但似乎我需要對這些替代方案進行更多解釋。我查找了 r.url.query
但他們面臨的問題是使用不同的路由結構時。
我還使用 `mux.routematch` 尋找另一種替代方案,但我認為我可以使用一些解釋。
問題已解決
我只是將我的專案移到桌面上(我相信您可以移動到任何您想要的位置,只要您不需要管理員權限來存取該目錄)並且它可以工作。
從現在開始,我將繼續在可存取的目錄中探索專案。謝謝。
以上是為什麼 mux.Vars() 回傳空映射的詳細內容。更多資訊請關注PHP中文網其他相關文章!