javascript - Firebase remove node based on child value - Stack Overflow

I want to delete the entire node by query like delete * WHERE user_id = "-KTruPWrYO9WFj-TF8Ft"

I want to delete the entire node by query like delete * WHERE user_id = "-KTruPWrYO9WFj-TF8Ft" How can I achieve this on firebase?

-KVpQFXnzQkzzrowHxGk
  answer: "1"
  question_number: 2
  user_id: "-KTruPWrYO9WFj-TF8Ft"
-KVpQFXODhsAMJYFNjy7
  answer: "4"
  question_number: 25
  user_id: "-KTruPWrYO9WFj-TF8Ft"

I want to delete the entire node by query like delete * WHERE user_id = "-KTruPWrYO9WFj-TF8Ft" How can I achieve this on firebase?

-KVpQFXnzQkzzrowHxGk
  answer: "1"
  question_number: 2
  user_id: "-KTruPWrYO9WFj-TF8Ft"
-KVpQFXODhsAMJYFNjy7
  answer: "4"
  question_number: 25
  user_id: "-KTruPWrYO9WFj-TF8Ft"
Share Improve this question edited Nov 6, 2016 at 6:15 Frank van Puffelen 600k85 gold badges890 silver badges860 bronze badges asked Nov 5, 2016 at 18:15 Edyl Jay TempladoEdyl Jay Templado 1331 silver badge9 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 14

To delete all references with child having some particular value first you will need to retrieve all keys ('-KVpQFXnzQkzzrowHxGk', '-KVpQFXnzQkzzrowHxGk' in your case) with equalTo query and then delete those references with remove function.

A sample code is here.

var ref = firebase.database(); //root reference to your data
ref.orderByChild('user_id').equalTo('-KTruPWrYO9WFj-TF8Ft')
    .once('value').then(function(snapshot) {
        snapshot.forEach(function(childSnapshot) {
        //remove each child
        ref.child(childSnapshot.key).remove();
    });
});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743621171a4479800.html

相关推荐

  • javascript - Firebase remove node based on child value - Stack Overflow

    I want to delete the entire node by query like delete * WHERE user_id = "-KTruPWrYO9WFj-TF8Ft"

    22小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信