Coder Social home page Coder Social logo

Custom how nested struct marshals about structs HOT 2 CLOSED

FX-HAO avatar FX-HAO commented on August 19, 2024
Custom how nested struct marshals

from structs.

Comments (2)

DenLilleMand avatar DenLilleMand commented on August 19, 2024

I think this issue fits nicely into why i had to fork this library as well, i wonder if you could say something about whether you see this library support something like the PR #118 contains @fatih ? My main issue is that nested structs either get ignored, or unmarshalls all of it's children instead of adding the option to evaluate it to a single field.

I have seen suggestions to use the structs:",string" which will use the stringer interface on the struct calling the method String()

If i owned all of the structs i wanted to call the Values(interface{}) method on, it would be no problem, but if we take sql.NullString as an example the suggestion would be to do a type alias like

type SQLNullString sql.NullString

type Bar struct {
    SomeString SQLNullString `structs:",string"`
}

func (sns *SQLNullString) String() string {
    return sns.String()
}

This code has a error because sql.NullString already has a public field String so you cannot create a String() method on it's type alias.

In our fork omnioiot/structs we changed the Values() method to have something like this for the sql.NullX, in this case just the sql.NullString as an example:

if tagOpts.Has("nullstring") {
			sqlNullString, ok := val.Interface().(sql.NullString)
			if ok {
				value, err := sqlNullString.Value()
				if err == nil {
					t = append(t, value)
				} else {
					panic(err)
				}
			}
			continue
		}

I think that @FX-HAO has a PR #118, but as i commented on that PR it doesn't seem to work on structs, only maps.

from structs.

fatih avatar fatih commented on August 19, 2024

Hi,

Unfortunately, I'm archiving this project and will no longer maintaining it. For more information, please read my blog post: Taking an indefinite sabbatical from my projects.

Thanks for the feedback and contribution.

from structs.

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.