在 Go1.22 的時候,讓 http.HandleFunc 新的 routing pattern 可以用變數的形式拿到 URL 路徑裡的值
要使用這個功能,要讓 go build 使用新的編譯方法,不然它總是用舊方法編譯,這是為了相容性。
最簡單就是在 go.mod 裡加上一行 go 1.22 或是 go 1.23
https://stackoverflow.com/questions/28745161/with-gos-webserver-where-does-the-root-of-the-website-map-onto-the-filesystem
https://tip.golang.org/doc/godebug
https://programmingpercy.tech/blog/exciting-go-update-v-1-22/
https://github.com/babafemi99/up-I-go/blob/main/main.go
https://gowithore.hashnode.dev/go-up-or-go-down
https://stackoverflow.com/questions/24116147/how-to-download-file-in-browser-from-go-server
https://mileslin.github.io/2020/03/Golang/%E5%BB%BA%E7%AB%8B%E4%B8%8B%E8%BC%89%E6%AA%94%E6%A1%88%E7%9A%84-Http-Response/