如何检索最后添加的项目的实例

How can I retrieve instance of last added item

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

如,最后插入 ID:(http://dev.mysql.com/doc/refman/5.0/en/information-functions.html#function_last-insert-id)

我该怎么做?

type User struct {
  Id int
  Name string
}

user := User{Name: "jinzhu"}
db.Save(&user)
// user.Id is set to last insert id

尝试如下

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