Golang之hello,beego
阿新 • • 發佈:2018-02-03
啟動 dev views 執行 alt ast golang stax .com
學習謝大神的beego記錄
過程:
目錄結構:
編譯命令:
go build -o myBeego.exe go_dev/day13/beego_example/main
執行myBeego.exe即可啟動
效果:
簡易代碼如下:
main/main.go
package main import ( "github.com/astaxie/beego" _ "go_dev/day13/beego_example/router" ) func main(){ beego.Run() }
router/router.go
package router import ("github.com/astaxie/beego" "go_dev/day13/beego_example/controller/IndexController" ) func init(){ //index交給 這個方法處理 //beego默認需要模板文件 beego.Router("/index",&IndexController.IndexController{},"*:Index")//"get:" }
views/index/index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> hello beego </body> </html>
Golang之hello,beego