7

我正在使用带有 mysql 后端的 github.com/jinzhu/gorm。我想在上一个 Create 调用中检索行的 Id(或完整实体)。

如,last-insert-id:(http://dev.mysql.com/doc/refman/5.0/en/information-functions.html#function_last-insert-id

我怎样才能做到这一点?

4

2 回答 2

18
type User struct {
  Id int
  Name string
}

user := User{Name: "jinzhu"}
db.Save(&user)
// user.Id is set to last insert id
于 2015-02-28T01:12:48.893 回答
3

尝试如下

type User struct {
  Id   int    `gorm:"column:id; PRIMARY_KEY" json:"id"`
  Name string `gorm:"column:name" json:"name"`
}

user := User{Name: "Andy"}
db.Save(&user)
// user.Id is set to last insert id
于 2018-10-16T07:27:08.410 回答