BackboneJS - Il modello ha
Descrizione
Questo metodo restituisce true se l'attributo è impostato su un valore non nullo o non undefined.
Sintassi
model.has(attribute)
Parametri
attribute - Un attributo definisce la proprietà di un modello creato.
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 Company = Backbone.Model.extend();
var company = new Company();
company.set({ Name: "TutorialsPoint", comp_site:"www.tutorialspoint.com"});
if(company.has('comp_site')) {
document.write("The model Company has site: True");
} else {
document.write("The model Company has site: False");
}
</script>
</head>
<body></body>
</html>
Produzione
Eseguiamo i seguenti passaggi per vedere come funziona il codice sopra:
Salva il codice sopra nel file has.htm file.
Apri questo file HTML in un browser.