codecamp

GoFrame 开发工具-版本查看

使用方式

  • gf -v
  • gf version

用以查看当前​gf​命令行工具编译时的版本信息。

使用示例

$ gf version
GoFrame CLI Tool v2.0.0, https://goframe.org 
GoFrame Version: v2.0.0-beta.0.20211214160159-19c9f0a48845 in current go.mod 
CLI Installed At: /Users/john/Workspace/Go/GOPATH/src/github.com/gogf/gf-cli/main 
CLI Built Detail:
  Go Version:  go1.16.3
  GF Version:  v2.0.0-beta
  Git Commit:  2021-12-15 22:43:12 7884058b5df346d34ebab035224e415afb556c19
  Build Time:  2021-12-15 23:00:43 

注意事项

在打印的版本信息中会自动检测当前项目使用的​GoFrame​版本(自动解析​go.mod​),并以​GoFrame Version​的信息打印出来。

在​CLI Built Detail​信息中展示的是当前二进制编译时使用的各种Golang版本以及​GoFrame​版本信息,编译时的​Git​提交版本、当前二进制文件的编译时间。

大家请勿将​GoFrame Version​和​CLI Built Detail​中的​GF Version​混淆。


GoFrame 开发工具-工具安装
GoFrame 开发工具-项目创建
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

GoFrame 核心组件

GoFrame 核心组件-数据库ORM

GoFrame 模块列表

GoFrame 模块列表-单元测试

GoFrame 模块列表-功能调试

GoFrame WEB服务开发

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }