zoukankan      html  css  js  c++  java
  • GORM对实现datetime和date类型时间

    model 定义

    type Plan struct {
    	Id int `gorm:"primary_key"`
    	Title string `gorm:"column:title;not null;size:128"`
    	Start time.Time  `gorm:"type:date;column:start"`
    	End time.Time  `gorm:"type:date;column:end"`
    	Created   time.Time `gorm:"autoCreateTime;column:created;type:datetime"`
    	IsDelete int `gorm:"column:is_delete;default:1"`
    }
    

      相比官网的例子,增加了type属性

    执行:

    	db.AutoMigrate(&Plan{})
    

    结果:

     

     建议把类型改为string

    type Plan struct {
    	Id int `gorm:"primary_key"`
    	User int `gorm:"column:user;not null"`
    	Title string `gorm:"column:title;not null;size:128"`
    	Start string `gorm:"type:date;column:start"`
    	End string `gorm:"type:date;column:end"`
    	Created   time.Time `gorm:"autoCreateTime;column:created;type:datetime"`
    	IsDelete int `gorm:"column:is_delete;default:1"`
    }
    

      这样gin处理前端发过来的时间比较友好,不然会出现这样的报错

    parsing time "2019-09-06" as "2006-01-02T15:04:05Z07:00": cannot parse "" as "T"

     

  • 相关阅读:
    设计模式:组合模式
    对技术的认识及思考
    设计模式:策略模式
    java集合:常用集合的数据结构
    设计模式:代理模式
    java反射
    Spring事务管理
    在Spring使用junit注解进行单元测试
    tomcat限制ip访问
    获取openid回调两次
  • 原文地址:https://www.cnblogs.com/qinghuaL/p/15231819.html
Copyright © 2011-2022 走看看