14.7 Summary Links 14.7 Summary This chapter illustrates some ways in which the Beego framework can be extended. We first looked at static file support, learning how Beego han...
Beego Environment Beego Environment Beego depends on the go development environment, and in the current version, Beego relies on the go mod feature. To install the go environ...
FAQ FAQ 找不到模板文件,找不到配置文件,nil 指针错误 这种大多数情况是由于你采用了 go run main.go 这样的方式来运行你的应用,go run 是把文件编译之后放在了 tmp 下去运行,而 beego 的应用会读取应用的当前运行目录对应的 conf,view 去查找相应的配置文件和模板,因此要正确运行,请使用 go bu...
Beego 环境 Beego 环境 Beego 依赖于 go 开发环境,并且在当前版本,Beego 依赖于go mod 特性。安装 go 环境可以参考: golang 安装 golang 安装-中国镜像 在 Beego 应用的开发过程中,我们会需要用到一些命令: go mod 命令 go get 命令 同时我们强烈建议你使用我们的...
ORM Test MySQL Sqlite3 PostgreSQL ORM Test 测试代码参见 表定义 models_test.go 测试用例 orm_test.go MySQL mysql - u root - e 'create database orm_test;' export ORM_DRIVER = my...
Logging Basic Usage General Usage Another Way Logging caller information (file name & line number) Logging asynchronously Provider configuration Custom format logging Global...