最近发布的主题
最近发布的文章
最近分享的资源
暂无
最近发布的项目
暂无
最近的评论
-
评论了博文 Gopher面试中的Coding@freelang 话说,你转载至少要注明出处吧? https://www.jianshu.com/p/268068e786b8
-
评论了主题 滴滴出行内推 go研发工程师,大量坑位
-
评论了博文 Emacs golang用户代码无法补全问题我使用的spacemacs,没有遇到,你说的问题
-
评论了主题 结构体定义时,能grom 和json一起使用么?```go type User struct { ID int32 `gorm:"primary_key;AUTO_INCREMENT;not null"` Time int64 Info string `gorm:"type:text;not null"` } type User struct { ID int32 `json:"id"` Time int64 `json:"time"` Info string `json:"info"` } ``` 当然是可以的,上面你原有的代码,下面是组合后的数据: ```go type User struct { ID int32 `gorm:"primary_key;AUTO_INCREMENT;not null" json:"id"` Time int64 `json:"time"` Info string `gorm:"type:text;not null" json:"info"` } ```
-
评论了主题 Go 我要拥抱你,我该选择什么IDE我用emacs和vim