Need to delete entry trainName
I tried the below code which didnt work for me.
var usersRef = new Firebase('https://hosurcabapp.firebaseio.com').child('user');delee
var clientInfo = $firebase(usersRef);
$scope.clientInfo = clientInfo.$asObject();
$scope.deleteClient = function(key) {
clientInfo.$remove(key);
};
Kindly help since am new to Firebase
You can not set a
null
value in Firebase, since Firebase treatsnull
as an instruction to delete the node. To quote the docs:Since your application most likely uses the
null
to signal some specific condition, you should substitute another value to signal that condition:Update
If you want to delete a node, you can do:
See also the documentation for the Firebase delete function.