Last active
February 19, 2019 23:45
Revisions
-
anantn revised this gist
Feb 15, 2013 . 1 changed file with 7 additions and 6 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,20 +1,21 @@ 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); } -
anantn revised this gist
Feb 13, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,7 +8,7 @@ function pushSomething(ref) { function removeItem(ref, name) { // Now we can get back to that item we just pushed via .child(). ref.child(name).remove(function(error) { alert(error ? "Uh oh!" : "Success!"); }); } -
anantn revised this gist
Feb 13, 2013 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,14 +7,14 @@ function pushSomething(ref) { function removeItem(ref, name) { // Now we can get back to that item we just pushed via .child(). ref.child(name).remove(function(error) { alert(error); }); } function go() { var testRef = new Firebase("https://example.firebaseIO.com/"); var name = pushSomething(testRef); // Later... should popup an alert that says "null" (No Error). removeItem(testRef, name); } -
anantn created this gist
Dec 18, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ function pushSomething(ref) { // Let's push something. push() returns a reference that you can hold onto! var justPushed = ref.push({test: "push"}); // That reference has a .name() that will return the key name. return justPushed.name(); } function removeItem(ref, name) { // Now we can get back to that item we just pushed via .child(). ref.child(name).remove(function(success) { alert(success); }); } function go() { var testRef = new Firebase("https://example.firebaseIO.com/"); var name = pushSomething(testRef); // Later... should popup an alert that says "true". removeItem(testRef, name); }