php小编苹果在Golang开发中,我们经常遇到需要在开发结构和生产结构中使用相同的成员,但却需要不同的JSON标签的情况。这种情况下,我们需要找到一种灵活的解决方案,以便在编写代码时能够方便地切换不同的标签。本文将介绍如何在Golang中实现这一需求,让开发过程更加高效和灵活。
第一次提问! 我正在尝试将使用相同结构的开发和生产分开。
我正在使用 airtable,它将记录作为 json 发送,并带有我们在解组时使用的 fld 标签。
type airtablerecord struct { name *string `json:"fldaaaa,omitempty"` }
我有 2 个独立的 airtable:
它们是相同的,只是由于 airtable 的工作方式,字段被赋予了不同的 fld 标签
我的 airtable 场地的图片
现在要将开发环境与生产环境分开,我必须根据我指向的 airtable 取消注释正确的成员。
type airtablerecord struct { // development name *string `json:"fldaaaa,omitempty"` // production //name *string `json:"fldbbbb,omitempty"` }
我将此类型保留在它自己的 model.go 文件中,供其他包使用。
我调查过:
type airtablerecord struct { // development or production name *string `json:"fldaaaa,fldbbbb,omitempty"` }
文件1:
// +build dev type airtablerecord struct { // development name *string `json:"fldaaaa,omitempty"` }
文件2:
type AirtableRecord struct { // Production Name *string `json:"fldBBBB,omitempty"` }
我想根据我是在开发模式还是生产模式下运行来动态更改此成员的标签。
任何及所有帮助将不胜感激!
如果您在此块中收到 redeclared 使用构建标记的
编译错误,请在 prod 文件上指定一个未标记的标记,以避免出现这种情况。
开发文件
// +build dev type airtablerecord struct { // development name *string `json:"fldaaaa,omitempty"` }
产品文件
// +build !dev type airtablerecord struct { // development name *string `json:"fldaaaa,omitempty"` }
构建
# for dev go build -tags=dev -o devrel # for prod go build -tags=prod -o prodrel or no tags for prod
自 1.17 以来,构建标签格式也发生了变化,所以在您的情况下,它会是,
//go:build dev
但也应该与旧的一起使用。
以上是如何在 Golang 中拥有具有相同成员但不同 JSON 标签的开发结构和生产结构?的详细内容。更多信息请关注PHP中文网其他相关文章!