beego介绍

前端之家收集整理的这篇文章主要介绍了beego介绍前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

beego是一个类似tornado的Go应用框架,采用了RESTFul的方式来实现应用框架,是一个超轻量级的框架,主要有如下的特点:

执行过程如下所示:

beego简单例子

package main

import (
    "github.com/astaxie/beego"
)

type MainController struct {
    beego.Controller
}

func (this *MainController) Get() {
    this.Ctx.WriteString("hello world")
}

func main() {
    beego.Router("/",&MainController{})
    beego.Run()
}
原文链接:https://www.f2er.com/go/191380.html

猜你在找的Go相关文章