Last active
February 19, 2019 23:45
-
-
Save anantn/4325082 to your computer and use it in GitHub Desktop.
Firebase: Removing an item you've pushed. This snippet shows how to remove an object that you just added using push().
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pushSomething(ref) { | |
// Let's push something. push() returns a reference that you can hold onto! | |
var justPushed = ref.push({test: "push"}); | |
// We return a reference, but you can also return the name of the newly | |
// created object with .name(). | |
return justPushed; | |
} | |
function removeItem(ref) { | |
// Now we can get back to that item we just pushed via .child(). | |
ref.remove(function(error) { | |
alert(error ? "Uh oh!" : "Success!"); | |
}); | |
} | |
function go() { | |
var testRef = new Firebase("https://example.firebaseIO.com/"); | |
var newRef = pushSomething(testRef); | |
// Later... should popup an alert that says "null" (No Error). | |
removeItem(newRef); | |
} |
Add an android example as well
Hey
Thanks!
thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nevermind. I created a little demo that helped me with this: https://gist.github.com/ctmcquilkin/6722983
Thanks!