0

ポッドキャストからエピソードを取得しようとすると、invalid association []. 私が間違っているのかわかりません。

package main

import (
    "log"

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

type Podcast struct {
    Id       int
    Title    string
    RssUrl   string `sql:"unique_index"`
    Url      string
    Episodes []Episode
}

type Episode struct {
    Id         int
    PodcastID  int `sql:"index"`
    Title      string
    Url        string `sql:"unique_index"`
    Downloaded bool
}

func main() {
    db, err := gorm.Open("sqlite3", "gorm.db")
    if err != nil {
        log.Fatal(err)
    }
    db.LogMode(true)

    db.CreateTable(&Podcast{})
    db.CreateTable(&Episode{})

    podcast := Podcast{
      Title:    "My Podcast",
      RssUrl:   "http://example.com/feed/",
      Url:      "http://www.example.com",
      Episodes: []Episode{{Title: "Episode One Point Oh!", Url: "http://www.example.com/one-point-oh", Downloaded: false}},
    }

    var episodes []Episode
    db.Model(&podcast).Related(&episodes)
}
4

1 に答える 1

1

GO と GORM のどのバージョンを使用していますか? 私は自分のマシンで試してみましたが、これはログです:

[2015-06-17 19:02:11]  [12.00ms]  CREATE TABLE "podcasts" ("id" integer,"title" varchar(255),"rss_url" varchar(255),"url" varchar(255) , PRIMARY KEY ("id"))
[2015-06-17 19:02:11]  [1.26ms]  CREATE TABLE "episodes" ("id" integer,"podcast_id" integer,"title" varchar(255),"url" varchar(255),"downloaded" bool , PRIMARY KEY ("id")) 
[2015-06-17 19:02:11]  [1.25ms]  SELECT  * FROM "episodes"  WHERE ("podcast_id" = '0')

podcast 変数を作成していないため、podcast_id は 0 であり、クエリはあまり意味をなさないことに注意してください。

ポッドキャストを作成するには、このコードを追加するだけです

db.NewRecord(podcast)
db.Create(&podcast)

var episodes []Episode
db.Model(&podcast).Related(&episodes)

log.Print(episodes)
于 2015-06-17T17:03:45.983 に答える