我给 ”Go 语言“ 开发了 6 个在线工具
2021/12/2 8:06:22
本文主要是介绍我给 ”Go 语言“ 开发了 6 个在线工具,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
工具快速访问
- JSON 转 GO: https://www.printlove.cn/tools/json2go
- YAML 转 GO: https://www.printlove.cn/tools/yaml2go
- SQL 转 go-zero Model: https://printlove.cn/tools/sql2gozero
- SQL 转 GORM Model: https://www.printlove.cn/tools/sql2gorm
- SQL 转 ElasticSearch DSL: https://printlove.cn/tools/sql2es/
- SQL 转 entgo schema: https://printlove.cn/tools/sql2ent
JSON转GO
网址:https://www.printlove.cn/tools/json2go
1. 有两种模式
- 转化-展开:json中的所有对象都创建为新的struct
- 转化-嵌套:json中的对象都包含到一个struct中
2. 自定义tag
默认转化后的tag
是json
,也可以自定义,比如可以改为:gorm
3. 效果图
YAML转GO
网址:https://www.printlove.cn/tools/yaml2go
将 yaml 格式自动转化为 Go Struct 结构。
效果图
SQL 转 ent
网址:https://printlove.cn/tools/sql2ent
1. 效果图
2. 功能
- 此工具提供将 SQL 语句转化为
ent schema
- 提供常见的数据库类型到 field 函数的转化
SQL 转 ElasticSearch DSL
网址:https://printlove.cn/tools/sql2es/
1. 效果图
2. 当前支持
- sql and expression
- sql or expression
- equal(=) support
- not equal(!=) support
- gt(>) support
- gte(>=) support
- lt(<) support
- lte(<=) support
- sql in (eg. id in (1,2,3) ) expression
- sql not in (eg. id not in (1,2,3) ) expression
- paren bool support (eg. where (a=1 or b=1) and (c=1 or d=1))
- sql like expression (currently use match phrase, perhaps will change to wildcard in the future)
- sql order by support
- sql limit support
- sql not like expression
- field missing check
- support aggregation like count(*), count(field), min(field), max(field), avg(field)
- support aggregation like stats(field), extended_stats(field), percentiles(field) which are not standard sql function
- null check expression(is null/is not null)
- join expression
- having support
SQL转go-zero
网址:https://printlove.cn/tools/sql2gozero
1. 效果图
2. 功能
和官方的 goctl 工具生成的代码是一样的,同样支持是否带缓存的Model。
SQL转GORM Model
网址:https://www.printlove.cn/tools/sql2gorm
1. 效果图
2. 功能
- 支持多表
- 支持引入包的导入
这篇关于我给 ”Go 语言“ 开发了 6 个在线工具的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-24MongoDB资料:新手入门完全指南
- 2024-12-20go-zero 框架的 RPC 服务 启动start和停止 底层是怎么实现的?-icode9专业技术文章分享
- 2024-12-19Go-Zero 框架的 RPC 服务启动和停止的基本机制和过程是怎么实现的?-icode9专业技术文章分享
- 2024-12-18怎么在golang中使用gRPC测试mock数据?-icode9专业技术文章分享
- 2024-12-15掌握PageRank算法核心!你离Google优化高手只差一步!
- 2024-12-15GORM 中的标签 gorm:"index"是什么?-icode9专业技术文章分享
- 2024-12-11怎么在 Go 语言中获取 Open vSwitch (OVS) 的桥接信息(Bridge)?-icode9专业技术文章分享
- 2024-12-11怎么用Go 语言的库来与 Open vSwitch 进行交互?-icode9专业技术文章分享
- 2024-12-11怎么在 go-zero 项目中发送阿里云短信?-icode9专业技术文章分享
- 2024-12-11怎么使用阿里云 Go SDK (alibaba-cloud-sdk-go) 发送短信?-icode9专业技术文章分享