Coder Social home page Coder Social logo

Field.Set: use of reflect.Indirect about structs HOT 5 CLOSED

fatih avatar fatih commented on August 19, 2024
Field.Set: use of reflect.Indirect

from structs.

Comments (5)

fatih avatar fatih commented on August 19, 2024

Hm but reflect.Indirect is returning the value itself if it's not a pointer. And I need the value to set the field. See: http://golang.org/src/pkg/reflect/value.go?s=66983:67011#L2249

Here are the tests fro set https://github.com/fatih/structs/blob/master/field_test.go#L46

Could you add a test case that invalidates this test so I can be sure what the real problem is?

from structs.

pikanezi avatar pikanezi commented on August 19, 2024

I've forked your repository and added a test that fails.
https://github.com/pikanezi/structs

Basically:

type Bar struct {
    A string
}

type Foo struct {
    B *Bar
}


foo := &Foo{
    B: nil,
}
structInfo := structs.New(foo)
bar := &Bar {
    A: "helloWorld",
}

err := structInfo.Field("B").Set(bar); err != nil {
    fmt.Println(err) // Prints "field is not settable"
}

from structs.

fatih avatar fatih commented on August 19, 2024

Thanks! I'll look it into asap.

from structs.

fatih avatar fatih commented on August 19, 2024

Thanks for the case. I've added it to the test cases and fix the problem. As you said earlier there is no need to take the address as that would disallow to set it. 👍

from structs.

pikanezi avatar pikanezi commented on August 19, 2024

Glad I could help :)

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.