码迷,mamicode.com
首页 > 其他好文 > 详细

Beego框架使用

时间:2015-10-31 11:31:30      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

go get github.com/astaxie/beego

vim hello.go

package main

import "github.com/astaxie/beego"

func main() {
    beego.Run()
}

编译运行

go build -o hello hello.go

./hello

技术分享

例子2:

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()
}

编译运行

go build -o hello hello.go

./hello

技术分享

参考:

http://beego.me/

http://beego.me/quickstart

 

Beego框架使用

标签:

原文地址:http://www.cnblogs.com/super-d2/p/4925116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!