0

我正在尝试在gorm中使用多对多关系。但是,该示例是部分片段,我创建类似示例片段的尝试失败了。

package main

import (
    "github.com/jinzhu/gorm"
    _ "github.com/mattn/go-sqlite3"
)

type Part struct {
    gorm.Model

    Name string
}

type Machine struct {
    gorm.Model

    Name     string
    Subtasks []Part `gorm:"many2many:parts;"`
}

func main() {
    // Connect to the database
    db, err := gorm.Open("sqlite3", "example.db")
    if err != nil {
        panic(err)
    }
    defer db.Close()
    db.LogMode(true)

    // Set up associations
    if err := db.CreateTable(&Part{}).Error; err != nil {
        panic(err)
    }
    if err := db.CreateTable(&Machine{}).Related(&[]Part{}).Error; err != nil {
        panic(err)
    }
}

这会在最后一次 CreateTable 调用中出现恐慌:panic: invalid association []

4

1 回答 1

0

我认为你必须放弃Related- 部分。CreateTable据我所知,不需要它。

if err := db.CreateTable(&Machine{}).Error; err != nil {
    panic(err)
}

为我工作

于 2016-01-10T18:41:36.983 回答