欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

[Go] gocron源码阅读-go语言web框架Macaron

程序员文章站 2022-11-07 19:49:55
gocron源码中使用的是马卡龙框架,下面这个就是安装这个框架,和一般的MVC框架很像go get gopkg.in/macaron.v1git clone https://github.com/golang/crypto.git $GOPATH/src/golang.org/x/crypto 监听 ......

gocron源码中使用的是马卡龙框架,下面这个就是安装这个框架,和一般的mvc框架很像
go get gopkg.in/macaron.v1
git clone https://github.com/golang/crypto.git $gopath/src/golang.org/x/crypto

监听80端口,使用模板引擎的简单例子

package main

import "gopkg.in/macaron.v1"

func main() {
    m := macaron.classic()
    //使用模板引擎
    m.use(macaron.renderer())
    m.get("/", func(ctx *macaron.context) {
        ctx.data["name"] = "taoshihan"
        ctx.html(200, "index") // 200 为响应码
    })
    m.run("0.0.0.0", 80)
}

在当前目录下创建 templates/  , xxx.tmpl ,名字和你调用模板的名字对应

index.tmpl

<h2>{{.name}}</h2>