一個struct聚合的問題

haohongfan發表於2017-07-14

我寫了一個 User model 繼承了 gorm 的 model 類. 程式碼如下

type User struct {
    gorm.Model
    Email         string `gorm:"size:255"`
    Password      string `gorm:"size:20"`
    Repassword    string `gorm:"size:20"`
    LastLoginTime time.Time
}

但是我在 controller 裡使用這個 User, 給這個 User 賦值的時候,程式碼如下:

models.User{Model:Model{ID:1}}

沒法給 User 的 Model 賦值, 問題出在哪裡

更多原創文章乾貨分享,請關注公眾號
  • 一個struct聚合的問題
  • 加微信實戰群請加微信(註明:實戰群):gocnio

相關文章