从 https://github.com/lunny/tango 上面的例子
```T
import (
"errors"
"github.com/lunny/tango"
)
type Action struct {
tango.JSON
}
func (Action) Get() interface{} {
if true {
return map[string]string{
"say": "Hello tango!",
}
}
return errors.New("something error")
}
func main() {
t := tango.Classic()
t.Get("/", new(Action))
t.Run()
}
```
如果Get请求有不同的路由 比如
> Get /aaa
> Get /bbb
都会执行到同一个方法
如果要不同的操作,是不是需要每一个路由定义一个struct 然后用这个struct来做为接收器写个get方法 ?
有疑问加站长微信联系(非本文作者)