在 Goji 中映射所有路由及其 http 方法
Mapping all routes and its http methods in Goji
我想映射每条路线及其请求类型(GET、POST、PUT、...),以便为我的 [在 JSON 中生成类似 sitemap.xml 的内容=26=] API.
Goji 使用函数创建新路线。我可以将路径和处理程序存储在地图中。
我的方法是这样的,除了编译器给出以下初始化循环错误,因为 sitemap
和 routes
相互引用(路由映射包含应该编组的处理程序站点地图本身)。
main.go:18: initialization loop:
main.go:18 routes refers to
main.go:41 sitemap refers to
main.go:18 routes
这可以用更惯用的方式实现吗?
package main
import (
"encoding/json"
"net/http"
"github.com/zenazn/goji"
"github.com/zenazn/goji/web"
)
var routes = []Route{
Route{"Get", "/index", hello},
Route{"Get", "/sitemap", sitemap},
}
type Route struct {
Method string `json:"method"`
Pattern string `json:"pattern"`
Handler web.HandlerType `json:"-"`
}
func NewRoute(method, pattern string, handler web.HandlerType) {
switch method {
case "Get", "get":
goji.DefaultMux.Get(pattern, handler)
case "Post", "post":
goji.DefaultMux.Post(pattern, handler)
// and so on...
}
}
func hello(c web.C, w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello world"))
}
func sitemap(c web.C, w http.ResponseWriter, r *http.Request) {
// BUG: sitemap tries to marshall itself recursively
resp, _ := json.MarshalIndent(routes, "", " ")
// some error handling...
w.Write(resp)
}
func main() {
for _, r := range routes {
NewRoute(r.Method, r.Pattern, r.Handler)
}
goji.Serve()
}
避免初始化循环的最简单方法是通过延迟其中一项初始化来打破循环。
例如:
var routes []Route
func init() {
routes = []Route{
Route{"Get", "/index", hello},
Route{"Get", "/sitemap", sitemap},
}
}
通过此更改,您的代码可以编译。
[在 chat 之后编辑:]
下面是一个完全编辑和可运行的示例,它也解决了您关于 switch
的问题:
package main
import (
"encoding/json"
"net/http"
"github.com/zenazn/goji"
"github.com/zenazn/goji/web"
)
var routes []Route
func init() {
// Initialzed in init() to avoid an initialization loop
// since `routes` refers to `sitemap` refers to `routes`.
routes = []Route{
Route{"Get", "/index", hello},
Route{"Get", "/sitemap", sitemap},
//Route{"Post", "/somewhereElse", postHandlerExample},
}
}
type Route struct {
Method string `json:"method"`
Pattern string `json:"pattern"`
Handler web.HandlerType `json:"-"`
}
var methods = map[string]func(web.PatternType, web.HandlerType){
"Get": goji.Get,
"Post": goji.Post,
// … others?
}
func (r Route) Add() {
//log.Println("adding", r)
methods[r.Method](r.Pattern, r.Handler)
}
func hello(c web.C, w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello world"))
}
func sitemap(c web.C, w http.ResponseWriter, r *http.Request) {
resp, err := json.MarshalIndent(routes, "", " ")
if err != nil {
http.Error(w, "Can't generate response properly.", 500)
return
}
w.Write(resp)
}
func main() {
for _, r := range routes {
r.Add()
}
goji.Serve()
}
可作为 gist。
我会注意到你的开关没有问题,
在这种情况下,如果只有两种方法,则 map 可能有点矫枉过正。
一个 previous version of the example
没有使用映射并明确指定函数和方法名称(预期匹配)。
此外,此版本不检查无效的方法名称(如果 routes
始终是硬编码并且在运行时从未更改是合理的)。如果需要,可以直接执行 fn, ok := methods[r.Method]
并执行其他操作 if/when !ok
。
我想映射每条路线及其请求类型(GET、POST、PUT、...),以便为我的 [在 JSON 中生成类似 sitemap.xml 的内容=26=] API.
Goji 使用函数创建新路线。我可以将路径和处理程序存储在地图中。
我的方法是这样的,除了编译器给出以下初始化循环错误,因为 sitemap
和 routes
相互引用(路由映射包含应该编组的处理程序站点地图本身)。
main.go:18: initialization loop:
main.go:18 routes refers to
main.go:41 sitemap refers to
main.go:18 routes
这可以用更惯用的方式实现吗?
package main
import (
"encoding/json"
"net/http"
"github.com/zenazn/goji"
"github.com/zenazn/goji/web"
)
var routes = []Route{
Route{"Get", "/index", hello},
Route{"Get", "/sitemap", sitemap},
}
type Route struct {
Method string `json:"method"`
Pattern string `json:"pattern"`
Handler web.HandlerType `json:"-"`
}
func NewRoute(method, pattern string, handler web.HandlerType) {
switch method {
case "Get", "get":
goji.DefaultMux.Get(pattern, handler)
case "Post", "post":
goji.DefaultMux.Post(pattern, handler)
// and so on...
}
}
func hello(c web.C, w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello world"))
}
func sitemap(c web.C, w http.ResponseWriter, r *http.Request) {
// BUG: sitemap tries to marshall itself recursively
resp, _ := json.MarshalIndent(routes, "", " ")
// some error handling...
w.Write(resp)
}
func main() {
for _, r := range routes {
NewRoute(r.Method, r.Pattern, r.Handler)
}
goji.Serve()
}
避免初始化循环的最简单方法是通过延迟其中一项初始化来打破循环。
例如:
var routes []Route
func init() {
routes = []Route{
Route{"Get", "/index", hello},
Route{"Get", "/sitemap", sitemap},
}
}
通过此更改,您的代码可以编译。
[在 chat 之后编辑:]
下面是一个完全编辑和可运行的示例,它也解决了您关于 switch
的问题:
package main
import (
"encoding/json"
"net/http"
"github.com/zenazn/goji"
"github.com/zenazn/goji/web"
)
var routes []Route
func init() {
// Initialzed in init() to avoid an initialization loop
// since `routes` refers to `sitemap` refers to `routes`.
routes = []Route{
Route{"Get", "/index", hello},
Route{"Get", "/sitemap", sitemap},
//Route{"Post", "/somewhereElse", postHandlerExample},
}
}
type Route struct {
Method string `json:"method"`
Pattern string `json:"pattern"`
Handler web.HandlerType `json:"-"`
}
var methods = map[string]func(web.PatternType, web.HandlerType){
"Get": goji.Get,
"Post": goji.Post,
// … others?
}
func (r Route) Add() {
//log.Println("adding", r)
methods[r.Method](r.Pattern, r.Handler)
}
func hello(c web.C, w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello world"))
}
func sitemap(c web.C, w http.ResponseWriter, r *http.Request) {
resp, err := json.MarshalIndent(routes, "", " ")
if err != nil {
http.Error(w, "Can't generate response properly.", 500)
return
}
w.Write(resp)
}
func main() {
for _, r := range routes {
r.Add()
}
goji.Serve()
}
可作为 gist。
我会注意到你的开关没有问题, 在这种情况下,如果只有两种方法,则 map 可能有点矫枉过正。 一个 previous version of the example 没有使用映射并明确指定函数和方法名称(预期匹配)。
此外,此版本不检查无效的方法名称(如果 routes
始终是硬编码并且在运行时从未更改是合理的)。如果需要,可以直接执行 fn, ok := methods[r.Method]
并执行其他操作 if/when !ok
。