BackboneJS - Modello Clear

Descrizione

Rimuove tutti gli attributi, incluso il file id attributo da un modello backbone.

Sintassi

model.clear(options)

Parametri

options - Definisce i parametri utilizzati come id, nome, ecc., Quando vengono rimossi dal modello.

Esempio

<!DOCTYPE html>
<html>
   <head>
      <title> Model 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>
      
      <script type = "text/javascript">
         var Model = Backbone.Model.extend();
         var model = new Model({name:"TutorialsPoint", id:1});
         document.write("<b>Before using clear, name: </b>", 
            model.get('name'));
         
         document.write("<b>Before using clear, id: </b>", model.get('id'));
         document.write("<br>");
         model.clear();
         document.write("<b>After using clear, name:</b> ", 
            model.get('name'));
         
         document.write("<b>After using clear, id: </b>", model.get('id'));
      </script>
      
   </head>
   <body></body>
</html>

Produzione

Eseguiamo i seguenti passaggi per vedere come funziona il codice sopra:

  • Salva il codice sopra nel file clear.htm file.

  • Apri questo file HTML in un browser.