GithubHelp home page GithubHelp logo

Comments (4)

natdm avatar natdm commented on August 24, 2024 1

Closing this since it's not a firego issue.

from firego.

natdm avatar natdm commented on August 24, 2024

Correct me if I'm wrong, but this seems to be more Go related than firego related since all that's used is unmarshal:

firego/watch.go

Lines 44 to 51 in 15b273f

// Value converts the raw payload of the event into the given interface.
func (e Event) Value(v interface{}) error {
var tmp struct {
Data interface{} `json:"data"`
}
tmp.Data = &v
return json.Unmarshal(e.rawData, &tmp)
}

from firego.

zabawaba99 avatar zabawaba99 commented on August 24, 2024

Hey @natdm , thanks for opening up an issue. This behavior is actually a Firebase behavior. Take a look at these curl commands.

First we fetch the reference and see that it comes back as a map

~ curl https://firego-a08e8.firebaseio.com/issue88.json | jq
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   133  100   133    0     0    708      0 --:--:-- --:--:-- --:--:--   707
{
  "3": {
    "338": {
      "hello": "world"
    },
    "339": {
      "hello": "world"
    },
    "340": {
      "hello": "world"
    }
  },
  "5": {
    "385": {
      "hello": "world"
    },
    "386": {
      "hello": "world"
    }
  }
}

Now we go ahead and add a 4 in the map

~ curl -XPATCH https://firego-a08e8.firebaseio.com/issue88.json --data '{"4":"foo"}'
{"4":"foo"}%                                                                    

We fetch the reference again, and see how it comes back as an array.

~ curl https://firego-a08e8.firebaseio.com/issue88.json | jq
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   146  100   146    0     0    764      0 --:--:-- --:--:-- --:--:--   768
[
  null,
  null,
  null,
  {
    "338": {
      "hello": "world"
    },
    "339": {
      "hello": "world"
    },
    "340": {
      "hello": "world"
    }
  },
  "foo",
  {
    "385": {
      "hello": "world"
    },
    "386": {
      "hello": "world"
    }
  }
]

from firego.

zabawaba99 avatar zabawaba99 commented on August 24, 2024

Sorry for the confusion but thanks again for opening the issue!

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.