Giter VIP home page Giter VIP logo

Comments (3)

RedCrazyGhost avatar RedCrazyGhost commented on April 28, 2024 1

I've tried to reproduce your issue on my side

Can't reproduce your problem

test code:

package main

import (
	"net/http"
	"time"
	
	"github.com/gin-gonic/gin"
)

func main() {
	r := gin.Default()
	r.Any("/time", func(c *gin.Context) {
		s := struct {
			CreatedAt []time.Time `form:"createdAt" time_format:"2006-01-02 15:04:05" example:"2019-09-09 12:12:12,2019-09-09 12:12:12"`
		}{}
		
		if err := c.Bind(&s); err != nil {
			c.String(http.StatusBadRequest,err.Error())
		}
		c.JSON(http.StatusOK,s)
		
	})
	r.Run()
}

from gin.

appleboy avatar appleboy commented on April 28, 2024

@RedCrazyGhost Thanks for your sample code.

@birdycn Please feel free to reopen the issue if you encounter the same problem.

from gin.

feiyangbeyond avatar feiyangbeyond commented on April 28, 2024

@appleboy

I have a new type MyTime, and it has implements encoding/json.Unmarshaler.

const defaultTimeLayout = "2006-01-02 15:04:05"

type MyTime time.Time

func (t *MyTime) UnmarshalJSON(data []byte) error {
	var v interface{}
	if err := json.Unmarshal(data, &v); err != nil {
		return err
	}
	switch value := v.(type) {
	case string:
		var err error
		tt, err := time.ParseInLocation(defaultTimeLayout, value, time.Local)
		if err != nil {
			return err
		}
		*t = MyTime(tt)
		return nil
	default:
		return errors.New("invalid time format")
	}
}

func (t MyTime) MarshalJSON() ([]byte, error) {
	return json.Marshal(time.Time(t).Format(defaultTimeLayout))
}

And my struct define:

type MyReq struct {
	Time MyTime `json:"time" form:"time" binding:"required" time_format:"2006-01-02 15:04:05"`
}

When I use http get query , the same error occurred. And after changing MyReq.Time type to time.Time, it works.

I hope it works with MyTime

from gin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.