在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、install go 2、goland 软件下载:https://www.jetbrains.com/go/download/#section=windows (注意版本,否则激活不了) 安装路径: D:\Program Files\JetBrains\GoLand 2018.2.2 #程序的存放目录 D:\GoFiles\src 软件激活方法: #修改配置文件: D:\software\go开发工具\goland-2018.2.2软件和激活工具\bin\goland.exe.vmoptions 激活软件: 3、安装git 4、install beego #创建项目名称 #运行项目 5、手工运行go报错: D:\GoFiles\src>bee run word 解决方法: 修改:vi main.go
package main
import (
"fmt"
_ "./routers" #修改为当前路径
"github.com/astaxie/beego"
)
func main() {
fmt.Println("hello world")
beego.Run()
}
D:\go_scripts\hello\routers package routers
import (
"../controllers" #修改为上上一级目录
"github.com/astaxie/beego"
)
func init() {
beego.Router("/", &controllers.MainController{})
}
|
请发表评论