01/10/2018, 17:47

Firebase rules tại sao permision deny?

Có vấn đề này mà không biết tại sao?

data below


{
  "2" : {
    "level" : 1,
    "ten" : "teo",
    "uid" : "lQiMWaRDENSuBo4cht6vdxImszA2",
    "user_id" : "lQiMWaRDENSuBo4cht6vdxImszA2"
  },
  "11111" : {
    "level" : 9,
    "ten" : "ti",
    "uid" : "U7C1aTJ6DKYFAhrOHh7OpnYNgEM2",
    "user_id" : "U7C1aTJ6DKYFAhrOHh7OpnYNgEM2"
  }
}


rules below


      "users2":{
          ".read" : true,
          "$user_id":{
              ".write":" $user_id === auth.uid ",
          }
      },//

code below


on_edit(x){
	//alert(x[".key"]);
	firebase.database().ref('users2').child(x[".key"]).update({	
		ten:"hello",
	}).then(function(){
		that.msg="update ok";
	}).catch(function(error){
		that.msg=error;
	});
},


Bài liên quan
0