Git Product home page Git Product logo

Comments (5)

Asterism12 avatar Asterism12 commented on July 26, 2024
func test2() {
	bs := []byte(`["james","raynor"]`)
	data, _ := gabs.ParseJSON(bs)
	ds := data.Children()
	for i := range ds {
		nv, _ := ds[i].Set("bond")
		ds[i] = nv
	}
	fmt.Println(data.String())
	// output : ["james","raynor"]
}

It is troublesome to iterate arrays.

from gabs.

mihaitodor avatar mihaitodor commented on July 26, 2024

Hey, thanks for trying Gabs! I think this relates to #91.

For your first example, data22.Set("bond") doesn't change data2, so you'll need to do data2.Set(data22, "name", "last") before printing data2.

For your second example, try this:

func test2() {
	bs := []byte(`["james","raynor"]`)
	data, _ := gabs.ParseJSON(bs)
	ds := data.Children()
	for i := range ds {
		nv, _ := ds[i].Set("bond")
		_, _ = data.SetIndex(nv.Data(), i)
	}
	fmt.Println(data.String())
	// output : ["bond","bond"]
}

Hope this helps.

from gabs.

Asterism12 avatar Asterism12 commented on July 26, 2024

Thank you a lot for response! Your advice to the second example is helpful.

For the first example, what confused to me is data11.Set("bond", "last") will change value of data1, but data22.Set("bond") will not change value of data2.

from gabs.

mihaitodor avatar mihaitodor commented on July 26, 2024

You're welcome! Yeah, I agree, there are some inconsistencies in the API as mentioned in the issue I linked to. Not sure if there are any plans to address them for the time being.

from gabs.

Asterism12 avatar Asterism12 commented on July 26, 2024

I got it. Thanks!

from gabs.

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.