Golang web极速开发框架。
使用:
## [](https://github.com/who246/hopen#main)main
<pre class="brush:cpp ;toolbar: true; auto-links: false;">func init(){ //hopen.AddRouter("/test/:id([0-9]+)/sss",&testController.TestController{},"get:tohtml"); //hopen.AddAutoRouter("/test/:id([0-9]+)/tohtml",&testController.TestController{}); hopen.AddPrefixAutoRouter("/test",&testController.TestController{});
} func main(){
hopen.Run()
}</pre>
## [](https://github.com/who246/hopen#controller)controller
<pre class="brush:cpp ;toolbar: true; auto-links: false;">type TestController struct {
hopen.Controller } func (t *TestController) Sayhello() { print(t.R.Form.Get("id"))
} func (t *TestController) ToJson() { m := make(map[string]string)
m["show_branch"] = "false" m["t0"] = "true" m["t1"] = "true" t.SetValue("data", m)
t.SetValue("msg", "测试")
t.SetValue("status", "测试")
t.RenderJson()
} type Servers struct { XMLName xml.Name `xml:"server"` ServerName string `xml:"serverName"` ServerIP string `xml:"serverIP"` } func (t *TestController) ToXml() { v := &Servers{ServerName:"2",ServerIP:"3"}
t.RenderXml(v)
} func (t *TestController) ToHtml() {
id ,_ := t.GetI("id",-1);
t.SetValue("msg", "id is " + strconv.FormatInt(int64(id), 10))
t.Render("tmpl/welcome.html")
} func (t *TestController) RedirectTo() {
t.Redirect("tojson")
}</pre>