BackboneJS - Sync Backbone.sync

Descrição

É uma função que o Backbone sempre chama para ler ou salvar o modelo no servidor. Ele representa o estado do modelo.

Sintaxe

sync.(method, model, options)

Parâmetros

  • method - Representa as operações CRUD, como criar, ler, atualizar e excluir.

  • model - Inclui o modelo a ser salvo.

  • options - Dispara mensagens de sucesso ou erro, dependendo do método bem-sucedido.

Exemplo

<!DOCTYPE html>
<html>
   <head>
      <title>Sync Example</title>
      <script src = "https://code.jquery.com/jquery-2.1.3.min.js"
         type = "text/javascript"></script>
      
      <script src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js"
         type = "text/javascript"></script>
      
      <script src = "https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js"
         type = "text/javascript"></script>
   </head>
   
   <body>
      <script type = "text/javascript">
      
         //The sync() method reads and fetched the model data
         Backbone.sync = function(method, model) {
            document.write("The state of the model is:");
            document.write("<br>");

            //The 'method' specifies state of the model
            document.write(method + ": " + JSON.stringify(model));
         };

         //'myval' is a collection instance and contains the values which are 
         //to be fetched in the collection
         var myval = new Backbone.Collection ({
            site:"TutorialsPoint",
            title:"Simply Easy Learning..."
         });

         //The myval.fetch() method displays the model's state by delegating to 
         //sync() method
         myval.fetch();
      </script>
      
   </body>
</html>

Resultado

Vamos realizar as seguintes etapas para ver como funciona o código acima -

  • Salve o código acima no backbone-sync.htm Arquivo.

  • Abra este arquivo HTML em um navegador.