codecamp

GoFrame 高级特性-空跑特性

ORM​空跑可以通过​DryRun​配置项来启用,默认关闭。当​ORM​的空跑特性开启时,读取操作将会提交,而写入、更新、删除操作将会被忽略。该特性往往结合调试模式和日志输出一起使用,用于校验当前的程序(特别是脚本)执行的​SQL​是否符合预期。以下是一个开启了空跑特性的配置示例:

database:
  default:
  - link:   "mysql:root:12345678@tcp(127.0.0.1:3306)/user"
    debug:  true
    dryRun: true

空跑特性也可以通过命令行参数或者环境变量全局修改:

  1. 命令行启动参数 - ​gf.gdb.dryrun=true
  2. 指定的环境变量 - ​GF_GDB_DRYRUN=true

例如:

$ ./app --gf.gdb.dryrun=true
$ ./app --gf.gdb.dryrun true


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; }