GithubHelp home page GithubHelp logo

Comments (2)

zabawaba99 avatar zabawaba99 commented on August 24, 2024

I don't mind adding a snippet in the README to describe this behavior. It's a Firebase specific thing though.

For example,

package main

import (
	"log"

	"github.com/zabawaba99/firego"
)

func main() {
	fb := firego.New("https://my-app.firebaseio.com/issue62", nil)
	// auth configuration left out intentionally

	testData := map[string]string{
		"1": "tkn1",
		"2": "tkn1",
		"3": "tkn2",
		"4": "tkn3",
		"5": "tkn4",
		"6": "tkn5",
	}

	if err := fb.Set(testData); err != nil {
		panic(err)
	}

	var v interface{}
	if err := fb.Value(&v); err != nil {
		log.Fatalf("cannot get value %s", err)
	}

	log.Printf("Before deletion %#v\n", v)

	fb.Child("2").Remove()
	fb.Child("3").Remove()
	fb.Child("5").Remove()

	if err := fb.Value(&v); err != nil {
		log.Fatalf("cannot get value %s", err)
	}

	log.Printf("After deletion %#v\n", v)
}

Prints out

$ go run issue62.go
2017/08/26 17:03:00 Before deletion []interface {}{interface {}(nil), "tkn1", "tkn1", "tkn2", "tkn3", "tkn4", "tkn5"}
2017/08/26 17:03:00 After deletion map[string]interface {}{"6":"tkn5", "1":"tkn1", "4":"tkn3"}

IIRC, if you end up deleting for than X amount of values inside the array, then it's returned as a map

from firego.

zabawaba99 avatar zabawaba99 commented on August 24, 2024

Closing issue as repository is being archived.

from firego.

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.