登录
首页 >  Golang >  Go问答

错误:JSON 不支持 func() time.Time 类型 - 处理 Go 中的时间

来源:stackoverflow

时间:2024-02-28 16:27:29 349浏览 收藏

一分耕耘,一分收获!既然打开了这篇文章《错误:JSON 不支持 func() time.Time 类型 - 处理 Go 中的时间》,就坚持看下去吧!文中内容包含等等知识点...希望你能在阅读本文后,能真真实实学到知识或者帮你解决心中的疑惑,也欢迎大佬或者新人朋友们多留言评论,多给建议!谢谢!

问题内容

我是 golang 新手,只是尝试了 echo framework 中的一些 api 并遇到了一些错误。

我的模特:

package models

import (
    "net/http"
    "quotes/db"
)

type quote struct {
    id          int    `json:"id"`
    title       string `json:"title"`
    description string `json:"description"`
}

func getall() (response, error) {
    var quotes quote
    var res response

    ctx := db.init()

    ctx.find("es)

    res.status = http.statusok
    res.message = "success"
    res.data = ctx

    return res, nil
}

我的架构表

package schema

type quotes struct {
    id          int    `json:"id"`
    title       string `json:"title"`
    description string `json:"description"`
}

我的 api 响应类型

package models

type response struct {
    status  int         `json:"status"`
    message string      `json:"message"`
    data    interface{} `json:"data"`
}

我尝试将其添加到模型和架构中:

CreatedAt   time.Time `gorm:"type:timestamp" json:"created_at,string,omitempty"`
UpdatedAt   time.Time `gorm:"type:timestamp" json:"updated_at,string,omitempty"`
DeletedAt   time.Time `gorm:"type:timestamp" json:"deleted_at,string,omitempty"`

还是不行,有什么解决办法吗?

我希望 api 能够正常工作


正确答案


使用gorm时,需要嵌入一个gorm.model结构体,其中包含字段id、createdat、updatedat、deletedat。

参考

// gorm.model definition
type model struct {
  id        uint           `gorm:"primarykey"`
  createdat time.time
  updatedat time.time
  deletedat gorm.deletedat `gorm:"index"`
}

不熟悉 echo,但请阅读以下内容以了解如何使用 gorm。

根据您的情况,您可以尝试执行以下操作:

package schema

type quote struct {
    gorm.model
    title       string `json:"title"`
    description string `json:"description"`
}

然后获取所有报价:

func getall() (response, error) {
    var quotes []schema.quote // slice
    ctx := db.init()
    // assuming
    // ctx, err := gorm.open(....)

    // https://gorm.io/docs/query.html
    result := db.find("es)
    if result.error != nil {
        return response{
            status: http.statusinternalservererror,
            message: "query failed",
        },result.error
    }
    if result.rowsaffected == 0 {
        return response{
            status: http.statusnotfound,
            message: "no records found",
        },nil
    }
    
    return response{
        status: http.statusok,
        message: "success",
        data: quotes,
    },nil
}

请记住,data 字段的类型为 interface{},这意味着它可以保存任何类型的值。如果该值不是切片,您将使用 & 运算符获取 quote 值的地址。切片已经是指向底层切片的指针,因此需要使用 & 运算符。

如果您想要从 data 字段访问 quote 值的切片,则需要使用类型断言将值从 interface{} 类型转换为 []quote 类型。以下是如何执行此操作的示例:

// assume that response.data holds a slice of quote values
quotes, ok := response.data.([]quote)
if !ok {
    // handle the case where response.data is not a slice of quote
}

警告:由于您要返回切片,因此对返回切片的任何更改也将修改初始切片。如果您想避免这种情况,请将切片值复制到新切片:

quotesCopy = make([]schema.Quote, len(quotes))
copy(quotesCopy, quotes)

到这里,我们也就讲完了《错误:JSON 不支持 func() time.Time 类型 - 处理 Go 中的时间》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于的知识点!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>