我正在努力更新来自Gorm的字段。我正在从数据库中加载所有轮播,并有一个自动收录器,用于检查“ LastRun”字段,我想在运行时设置一个新的time.Now()值。
就目前而言,我只需要更新已加载的结构,因此我知道这时不会将更改写入数据库。
在此示例中,如何在func Sequencer()中更新字段carousel.LastRun?无论我做什么,它都会保持DB的旧价值...
package main
import (
"fmt"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/sqlite"
"sync"
"time"
)
var (
db *gorm.DB
wg = &sync.WaitGroup{}
)
type Carousel struct {
gorm.Model
Name string
Description string
Duration uint
LastRun time.Time
Index uint8
State State
}
type State struct {
Type string
}
func main() {
path := "pkg/database/database.db"
db, err := gorm.Open("sqlite3", path)
if err != nil {
panic("failed to connect database")
}
defer db.Close()
db.AutoMigrate(&Carousel{})
var carousels []Carousel
db.Find(&carousels)
wg.Add(1)
Sequencer(&carousels)
wg.Wait()
}
func Sequencer(carousels *[]Carousel) {
ticker := time.NewTicker(1000 * time.Millisecond)
for range ticker.C {
for _, carousel := range *carousels {
next := carousel.LastRun.Add(time.Millisecond * time.Duration(carousel.Duration))
if next.Sub(time.Now()) <= 0 {
fmt.Println("Carousel: ", carousel.Name, "Last run: ", time.Since(carousel.LastRun))
carousel.LastRun = time.Now()
/* How do I update the carousel.LastRun ? */
}
}
}
}
答案 0 :(得分:0)
要更新轮播结构,您可以执行以下操作:
func Sequencer(carousels []*Carousel) {
ticker := time.NewTicker(1000 * time.Millisecond)
for range ticker.C {
for i, _ := range carousels {
carousel = carousels[i]
next := carousel.LastRun.Add(time.Millisecond * time.Duration(carousel.Duration))
if next.Sub(time.Now()) <= 0 {
fmt.Println("Carousel: ", carousel.Name, "Last run: ", time.Since(carousel.LastRun))
carousel.LastRun = time.Now()
}
}
}
}
在使用range
时,所使用的值(在您的情况下为carousel
var)是切片中元素的副本。因此,即使更新它,它也不会更新实际列表中的元素。
为此,您需要访问需要更新的切片的索引,然后执行更改。