Part 2: Understanding the basics of Backbone Models
程序员文章站
2022-05-10 23:43:18
...
When we talk about any MV* pattern, model is undoubtedly the most important part of the architecture/application. Its the model that contains all the application data. Along with keeping the data the model class performs various set of actions on the data. Actions like possibility to validate the data, possibility to persist the data, defining access to various parts of data contained in the model (access control).
Backbone.js models are also the most important building blocks when it comes to building backbone.js applications. It keeps track of application data, perform validations on data and provide a mechanism to persist the data either locally on localstorage or remotely on a server using a web service.
Link to complete series:
Creating a simple backbone.js Model
To create a backbone model, we simply need to extend the backbone model class. Following code snippet shows how this can be done.
Furthermore, if we want to create a model that inherits from our model class then we just need to extend from our model class.
Instantiating a Model
Backbone models can simply be instantiated by using the new keyword.
Deleting a model
To delete a model, we just need to call the destroy function on the model.
Sometimes deleting a model could take some time(depending on the size of the model). In such cases we can define a function that will be called when the model get successfully deleted.
Cloning a model
Often times we would want to have a deep copied object or clone of a model. To create clone of a backbone model we simply need to call the clone method.
How to specify the model attributes
Backbone models does not enforce defining the attributes in the model definition itself i.e. one can create a model and specify the attributes on the fly. Lets say we want to create 2 attributes in our Book model. lets try to create them on the fly.
Default values of model attributes
Now creating the attributes on the fly is supported by the backbone models and it is a very powerful feature. But this feature actually becomes proves to be a maintenance nightmare when it comes to working with large scale application. From a maintainable application perspective and also from a best practices perspective, I would like the possibility to define my models attributes in my model definition itself.
To accomplish this, the default function can be used. The default function is used to specify the default attributes of the model and their default values. Lets try to move the attributes in the model definition now.
This way just instantiating the model will be enough and the created models will have these attributes associated with them.
Setting and getting model attributes
Once we specify the model attributes, we need to be able to get and set their values too. To do this we can use the get and set functions on the model.
How to check attribute existence
Since backbone allows us to add attributes on the fly, we need some way to identify whether a particular attribute exist in the model or not. To do this we can use the has function on model.
Defining Functions in a Model
We can also define our functions in the model classes. Lets try to create a simple function in our model class.
The initialize function
Whenever we create a model, the backbone will call its initialize function. We can override this function to provide custom behavior to it.
Listening Model attribute changes
We can also use the events to listen to the model changes. This can be done by listening to the change event. backbone raises a change event whenever any model attribute is changed. For each attribute we can use hasChanged method to check if that attribute has been changed or not. Lets try to hook up the event handler to listen to the model change in our current model.
[size=large]
If we have a lot of attributes and we are interested in listening to change for any specific attribute then perhaps we can specify that too in the change event binding. Lets try to listen to the BookName change only.
Point of Interest
So that is for this blog. the idea behind this article was to get familiar with the basic concepts of the backbone model. In next article of this series, we will look at more advanced topics associated with the backbone model. This article has been written from beginner’s perspective, I hope this has been informative.
原文链接:http://rahulrajatsingh.com/2014/07/backbone-tutorial-part-2-understanding-the-basics-of-backbone-models/
Backbone.js models are also the most important building blocks when it comes to building backbone.js applications. It keeps track of application data, perform validations on data and provide a mechanism to persist the data either locally on localstorage or remotely on a server using a web service.
Link to complete series:
- Part 1: Introduction to Backbone.Js
- Part 2: Understanding the basics of Backbone Models
- Part 3: More about Backbone Models
- Part 4: CRUD Operations on BackboneJs Models using HTTP REST Service
- Part 5: Understanding Backbone.js Collections
- Part 6: Understanding Backbone.js Views
- Part 7: Understanding Backbone.js Routes and History
- Part 8: Understanding Backbone.js Events
Creating a simple backbone.js Model
To create a backbone model, we simply need to extend the backbone model class. Following code snippet shows how this can be done.
var Book = Backbone.Model.extend({ });
Furthermore, if we want to create a model that inherits from our model class then we just need to extend from our model class.
var ChildrensBook = Book.extend({ });
Instantiating a Model
Backbone models can simply be instantiated by using the new keyword.
var book = new Book();
Deleting a model
To delete a model, we just need to call the destroy function on the model.
book.destroy();
Sometimes deleting a model could take some time(depending on the size of the model). In such cases we can define a function that will be called when the model get successfully deleted.
book.destroy({ success: function () { alert("The model has been destroyed successfully"); } });
Cloning a model
Often times we would want to have a deep copied object or clone of a model. To create clone of a backbone model we simply need to call the clone method.
function cloneModel() { var book = new Book(); var book2 = book.clone(); }
How to specify the model attributes
Backbone models does not enforce defining the attributes in the model definition itself i.e. one can create a model and specify the attributes on the fly. Lets say we want to create 2 attributes in our Book model. lets try to create them on the fly.
var book = new Book({ ID: 1, BookName: "Sample book" });
Default values of model attributes
Now creating the attributes on the fly is supported by the backbone models and it is a very powerful feature. But this feature actually becomes proves to be a maintenance nightmare when it comes to working with large scale application. From a maintainable application perspective and also from a best practices perspective, I would like the possibility to define my models attributes in my model definition itself.
To accomplish this, the default function can be used. The default function is used to specify the default attributes of the model and their default values. Lets try to move the attributes in the model definition now.
var Book = Backbone.Model.extend({ defaults: { ID: "", BookName: "" }, });
This way just instantiating the model will be enough and the created models will have these attributes associated with them.
Setting and getting model attributes
Once we specify the model attributes, we need to be able to get and set their values too. To do this we can use the get and set functions on the model.
var book = new Book(); book.set("ID", 3); book.set("BookName", "C# in a nutshell"); var bookId = book.get('ID'); var bookName = book.get('BookName');
How to check attribute existence
Since backbone allows us to add attributes on the fly, we need some way to identify whether a particular attribute exist in the model or not. To do this we can use the has function on model.
book.has('ID'); // true book.has('author'); // false
Defining Functions in a Model
We can also define our functions in the model classes. Lets try to create a simple function in our model class.
var Book = Backbone.Model.extend({ defaults: { ID: "", BookName: "" }, showAlert: function () { alert('ID: ' + this.get('ID') + ', BookName: ' + this.get('BookName')); } });
The initialize function
Whenever we create a model, the backbone will call its initialize function. We can override this function to provide custom behavior to it.
var Book = Backbone.Model.extend({ defaults: { ID: "", BookName: "" }, initialize: function(){ console.log('Book has been intialized'); }, showAlert: function () { alert('ID: ' + this.get('ID') + ', BookName: ' + this.get('BookName')); } });
Listening Model attribute changes
We can also use the events to listen to the model changes. This can be done by listening to the change event. backbone raises a change event whenever any model attribute is changed. For each attribute we can use hasChanged method to check if that attribute has been changed or not. Lets try to hook up the event handler to listen to the model change in our current model.
[size=large]
var Book = Backbone.Model.extend({ defaults: { ID: "", BookName: "" }, initialize: function(){ console.log('Book has been intialized'); // Lets hook up some event handers to listen to model change this.on('change', function() { if(this.hasChanged('ID')){ console.log('ID has been changed'); } if(this.hasChanged('BookName')){ console.log('BookName has been changed'); } }); }, showAlert: function () { alert('ID: ' + this.get('ID') + ', BookName: ' + this.get('BookName')); } });[/size]
If we have a lot of attributes and we are interested in listening to change for any specific attribute then perhaps we can specify that too in the change event binding. Lets try to listen to the BookName change only.
var Book = Backbone.Model.extend({ defaults: { ID: "", BookName: "" }, initialize: function () { console.log('Book has been intialized'); // Lets hook up some event handers to listen to model change this.on('change:BookName', function () { console.log('Message from specific listener: BookName has been changed'); }); }, showAlert: function () { alert('ID: ' + this.get('ID') + ', BookName: ' + this.get('BookName')); } });
Point of Interest
So that is for this blog. the idea behind this article was to get familiar with the basic concepts of the backbone model. In next article of this series, we will look at more advanced topics associated with the backbone model. This article has been written from beginner’s perspective, I hope this has been informative.
原文链接:http://rahulrajatsingh.com/2014/07/backbone-tutorial-part-2-understanding-the-basics-of-backbone-models/
推荐阅读
-
JavaScript Basics_Fundamentals Part 2_A simple calendar
-
Part 3: More about Backbone Models
-
Part 2: Understanding the basics of Backbone Models
-
Part 7: Understanding Backbone.js Routes and History
-
Part 3: More about Backbone Models
-
Part 6: Understanding Backbone.js Views
-
Part 5: Understanding Backbone.js Collections
-
Part 8: Understanding Backbone.js Events
-
JavaScript Basics_Fundamentals Part 2_A simple calendar
-
Part 7: Understanding Backbone.js Routes and History