Backbonejs-coll-get
提供:Dev Guides
BackboneJS-コレクションGet
説明
構文
パラメーター
例
出力
上記のコードがどのように機能するかを確認するために、次の手順を実行してみましょう-
- 上記のコードを get ファイルに保存します。
- このHTMLファイルをブラウザーで開きます。
*id* または *cid* を使用して、コレクションからモデルを取得するために使用されます。
collection.get(id)
*id* -コレクションからモデルを取得するために使用されます。
<!DOCTYPE html>
<html>
<head>
<title>Collection 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">
var MyCollection = new Backbone.Collection();
//The on() method binds callback function to 'MyCollection' instance and invokes whenever
//an event triggers
MyCollection.on("change:title", function(model) {
//When event triggers, it retrieves the title from the collection
document.write("Hello... " + model.get('title'));
});
MyCollection.add({id: 2}); //adds id value as 2 in the collection
//The 'myvalues' object gets the 'MyCollection' with id = 2
var myvalues = MyCollection.get(2);
//Sets the value for the title
myvalues.set('title', 'Welcome to finddevguides');
</script>
</body>
</html>
上記のコードがどのように機能するかを確認するために、次の手順を実行してみましょう-