xorm映射struct 中的ID字段到数据库变成 i_d

tablecell · · 1213 次点击
```go 1. type User struct { Id int64 //可以定义成Id Name string Age int Author string Published int } 2 . type User struct { Id int64 `xorm:"'id' "` //在xorm标签上面加一个'id' Name string Age int Author string Published int } ``` 试一下
#4
更多评论
xorm 会将读取到的字段名转为下划线风格(蛇形)
#1
1楼 <a href="/user/LintP" title="@LintP">@LintP</a> 为什么 Name 不是 n_a_m_e
#2