如何保存用户与 Gorm 和 Postgres 的地址关系?
package main
import (
"fmt"
"log"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/postgres"
)
var (
pgUri = "postgres://postgres@127.0.0.1:5432/postgres?sslmode=disable"
)
type User struct {
gorm.Model
Email string
Address Address
}
type Address struct {
gorm.Model
Street string
City string
Country string
}
func main() {
db, err := gorm.Open("postgres", pgUri)
if err != nil {
log.Fatalf("Failed to connect Postgres: %v\n", err)
}
// Checked two tables (user, address) created in database
db.AutoMigrate(&User{}, &Address{})
defer db.Close()
u := User{
Email: "some@one.com",
Address: Address{
Street: "One street",
City: "Two city",
Country: "Three country",
},
}
fmt.Println(u)
if err := db.Create(&u).Error; err != nil {
panic(err)
}
if err := db.Save(&u).Error; err != nil {
panic(err)
}
}
在我运行它之后go run main.go:
{{0 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC <nil>} some@one.com {{0 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC <nil>} One street Two city Three country}}
它会创建一个新用户,但不会创建任何地址。
RISEBY
相关分类