结构体定义时,能grom 和json一起使用么?

Demon_yl · · 2118 次点击
```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"` } ```
#2
更多评论
试一下就知道了啊,是可以的
#1