<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello Backbone</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/underscore.js/1.1.6/underscore-min.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/backbone.js/0.3.3/backbone-min.js"></script>
<style type="text/css" media="screen">
.content{width:300px;display:block;border:1px solid #ccc;}
#article{width:300px;display:block;}
</style>
</head>
<body>
<script>
$(function(){
//宣告一個Article的Model,概念上就好像設定 Article 是一個Class的感覺。
var Article = Backbone.Model;
//new 一個 article 模型實體包含資料(內容當然可以取自JSON或其他來源)
//其實上述的兩個步驟通常也可以用 Backbone.Model.extend 的寫法
var article = new Article({
author:"Joe",
content: "testing"
});
/*
核心觀念
定義一個 ArticleView 概念上還是有點像是在設計ArticleView 這個Class
*/
var ArticleView = Backbone.View.extend({
//el = element 設定對應的DOM
el: $('#article'),
//初始化 initialize: 和 el: , events: 可以想成是new一個物件時的建構子等事件。
initialize: function(){
//將自訂動作的function和這個DOM綁定,意思就是當其他事件呼叫updateContent 它會自動去影響this
//這邊有一點要先搞清楚這個功能是Underscore JS 提供的。
//這邊的功能是當綁定的事件被觸發會影響被綁定的物件。
_.bindAll(this,'updateContent');
//當Model改變時就呼叫updateContent. 可以試著將上面註解掉觀察其不同
this.model.bind('change',this.updateContent);
},
//事件綁定
events: {
"click .content" : "updateContent"
},
//自訂函式 可以理解成操作的動作
updateContent: function(){
this.$('.content').text(this.model.get("content"));
}
});
//上面設計好的Class 就new 一個出來 帶入model資料。
var articleView = new ArticleView({model:article});
//這邊是測試直接改變model 顯示會不會改變 這邊可以把_.bindAll 註解觀察不同點.
$('#fire').click(function(){
article.set({content: 'Change Model'});
});
});
</script>
<div id="article">Click Me <div class="content">Initialize</div> </div>
<button id="fire">Change</button>
</body>
</html>
Hurrah! In the end I got a website from where I can
truly get useful data regarding my study and knowledge.