
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
backbone-nested-models
Advanced tools
Backbone nested models is meant to be a lightweight and simple solution for nested models in Backbone.js. It gives you nothing fancy, just simple relations (2.1 kilobytes minified). If you are looking for a larger more complex and exhaustive solution checkout Backbone-relational by Paul Uithol.
Each Backbone.Model
can contain an array of relations
. Each Relation defines a nested model or collection which will
be represented by that attribute.
var Book = Backbone.Model.extend({
relations: {
"author": Backbone.Model
}
});
var book = new Book();
book.set({
"author": {
"name" : "Heber J. Grant",
"title": "President",
"age" : "47"
},
"pages": 450
});
var author = book.get("author");
author.get("name") === "Heber J. Grant";
author.parent.get('pages') === 450;
Whenever set is called on a model, or a json response is saved to a model, if a relation exists for one of the attributes
being saved, a new instance of that relation will be created or if it already exists, it will be updated. Also note that
the relation will be given a backwards reference to its parent model through the keyword parent
. A _parent
attribute will also be added to the options paramter passed to the initialize method, but be aware that the parent model is not entirely initialized at this point.
Collections work similarly except that the backwards reference from a model which is part of a colleciton which is a
relation of a model is collection.parent
.
var Package = Backbone.Model.extend({
relations: {
"documents": Backbone.Collection
}
});
var pkg = new Package();
pkg.set({
"documents": [
{id:1, name: "Document 1"},
{id:2, name: "Document 2"},
],
"packageTitle": "My Package"
});
var document1 = pkg.get("documents").get(1);
document1.get("name") === "Document 1";
document1.collection.parent.get("packageTitle") === "My Package";
Backbone nested models will never recreate an entire relation as an attribute to a model. It only creates the relation once and thereafter updates the collection or model representing the relation. This is important because event bindings or cached references may be pointing to the previous relations, and if they are recreated those references would be lost.
v2.0.1
v2.0.0
Collection.prototype.set
- https://github.com/blittle/backbone-nested-models/pull/23v0.7.0
v0.6.0
v0.5.1
v0.5.0
(The MIT License)
Copyright (c) 2012 Bret Little
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Backbone Nested Models ======================
The npm package backbone-nested-models receives a total of 1,366 weekly downloads. As such, backbone-nested-models popularity was classified as popular.
We found that backbone-nested-models demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.