codecamp

GoFrame 接口开发-驱动开发

我们可以通过​gdb​模块的接口设计实现:新增框架默认不支持的第三方数据库驱动、对已有支持的驱动进行定制化修改等。

驱动注册

之前我们有提到​Driver​的驱动接口,在实现该接口之后,我们可以通过以下方法注册自定义驱动到​gdb​模块:

// Register registers custom database driver to gdb.
func Register(name string, driver Driver) error

其中的驱动名称​name​可以是已有的驱动名称,例如​mysql​, ​mssql​, ​pgsql​等等,当出现同名的驱动注册时,新的驱动将会覆盖老的驱动。

驱动实现

开发一个自定义的驱动并注册到​gdb​模块中非常简单,可以参考​gdb​模块源码中已对接的数据库类型代码示例:https://github.com/gogf/gf/tree/master/contrib/drivers

需要说明的是,最常见的驱动开发或者修改方式是直接继承于现有​*Core​类型,因为在​Driver​接口中会传递该类型的对象,例如:

// DriverMysql is the driver for mysql database.
type DriverMysql struct {
	*Core
}

// New creates and returns a database object for mysql.
// It implements the interface of gdb.Driver for extra database driver installation.
func (d *DriverMysql) New(core *Core, node *ConfigNode) (DB, error) {
	return &DriverMysql{
		Core: core,
	}, nil
}


GoFrame 接口开发-回调处理
GoFrame 数据库ORM-上下文变量
温馨提示
下载编程狮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; }