Data update with IONIC and Firebase

1

Good evening, I'm studying Firebase with IONIC and Angular (I'm not using AngularFire) and a doubt has arisen. How do I update the data saved in Firebase? To get the data I do it as follows:

const config = {
    apiKey: "x",
    authDomain: "x",
    databaseURL: "x",
    projectId: "x",
    storageBucket: "x",
    messagingSenderId: "x"
  };
  firebase.initializeApp(config);

  let ref = firebase.database().ref('statuspedido');//statuspedido

  this.pedidos = new Array();

  ref.on('value', (dataSnapshot) =>{
     let items = dataSnapshot.val();
     for(let dados in items){
        this.pedidos.push(
            new PedidoModel(
                items[dados].dataEmissao, 
                items[dados].dataAtualizacao, 
                items[dados].vendedor, items[dados].frete, 
                items[dados].transportadora, items[dados].status)
        )
     }
  })

My firebase structure looks like this:

AndIwanttoforexampledotheupdateof"idPedido = 1" without changing the others.

    
asked by anonymous 09.07.2018 / 03:59

1 answer

1

Just use the update method found in the documentation :

var objeto = {
      a : 'a',
      b : 'b'
    };
    
    firebase.database().ref('caminho/para/o/meu/objeto').update(objeto)
    .then(function (retorno){
            //se cair aqui, os dados foram atualizados com sucesso
         })
    .catch(function (error){
            //se cair aqui, deu erro
     });

You can also upgrade two places at a time:

var objeto = { a : 'teste' };
var atualizacoes = {};      
atualizacoes['usuario/'] = objeto;
atualizacoes['todos/']=objeto;
      
      
firebase.database().ref('caminho/para/o/meu/objeto').update(atualizacoes)
   .then(function (retorno){
          //se cair aqui, os dados foram atualizados com sucesso
       })
   .catch(function (error){
          //se cair aqui, deu erro
   });
    
09.07.2018 / 15:54