<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Chan Chen Coding...

    First Step to Backbone Js


    JUMP TO …

    refer to:
     
    http://documentcloud.github.com/backbone/docs/todos.html

    todos.js

    An example Backbone application contributed by Jérôme Gravel-Niquet. This demo uses a simple LocalStorage adapter to persist Backbone models within your browser.

    Load the application once the DOM is ready, using jQuery.ready:

    $(function(){

    Todo Model

    Our basic Todo model has titleorder, and done attributes.

      var Todo = Backbone.Model.extend({

    Default attributes for the todo item.

        defaults: function() {       return {         title: "empty todo...",         order: Todos.nextOrder(),         done: false       };     },

    Ensure that each todo created has title.

        initialize: function() {       if (!this.get("title")) {         this.set({"title": this.defaults.title});       }     },

    Toggle the done state of this todo item.

        toggle: function() {       this.save({done: !this.get("done")});     },

    Remove this Todo from localStorage and delete its view.

        clear: function() {       this.destroy();     }    });

    Todo Collection

    The collection of todos is backed by localStorage instead of a remote server.

      var TodoList = Backbone.Collection.extend({

    Reference to this collection's model.

        model: Todo,

    Save all of the todo items under the "todos" namespace.

        localStorage: new Store("todos-backbone"),

    Filter down the list of all todo items that are finished.

        done: function() {       return this.filter(function(todo){ return todo.get('done'); });     },

    Filter down the list to only todo items that are still not finished.

        remaining: function() {       return this.without.apply(this, this.done());     },

    We keep the Todos in sequential order, despite being saved by unordered GUID in the database. This generates the next order number for new items.

        nextOrder: function() {       if (!this.length) return 1;       return this.last().get('order') + 1;     },

    Todos are sorted by their original insertion order.

        comparator: function(todo) {       return todo.get('order');     }    });

    Create our global collection of Todos.

      var Todos = new TodoList;

    Todo Item View

    The DOM element for a todo item...

      var TodoView = Backbone.View.extend({

    ... is a list tag.

        tagName:  "li",

    Cache the template function for a single item.

        template: _.template($('#item-template').html()),

    The DOM events specific to an item.

        events: {       "click .toggle"   : "toggleDone",       "dblclick .view"  : "edit",       "click a.destroy" : "clear",       "keypress .edit"  : "updateOnEnter",       "blur .edit"      : "close"     },

    The TodoView listens for changes to its model, re-rendering. Since there's a one-to-one correspondence between a Todo and a TodoViewin this app, we set a direct reference on the model for convenience.

        initialize: function() {       this.model.bind('change', this.render, this);       this.model.bind('destroy', this.remove, this);     },

    Re-render the titles of the todo item.

        render: function() {       this.$el.html(this.template(this.model.toJSON()));       this.$el.toggleClass('done', this.model.get('done'));       this.input = this.$('.edit');       return this;     },

    Toggle the "done" state of the model.

        toggleDone: function() {       this.model.toggle();     },

    Switch this view into "editing" mode, displaying the input field.

        edit: function() {       this.$el.addClass("editing");       this.input.focus();     },

    Close the "editing" mode, saving changes to the todo.

        close: function() {       var value = this.input.val();       if (!value) this.clear();       this.model.save({title: value});       this.$el.removeClass("editing");     },

    If you hit enter, we're through editing the item.

        updateOnEnter: function(e) {       if (e.keyCode == 13) this.close();     },

    Remove the item, destroy the model.

        clear: function() {       this.model.clear();     }    });

    The Application

    Our overall AppView is the top-level piece of UI.

      var AppView = Backbone.View.extend({

    Instead of generating a new element, bind to the existing skeleton of the App already present in the HTML.

        el: $("#todoapp"),

    Our template for the line of statistics at the bottom of the app.

        statsTemplate: _.template($('#stats-template').html()),

    Delegated events for creating new items, and clearing completed ones.

        events: {       "keypress #new-todo":  "createOnEnter",       "click #clear-completed": "clearCompleted",       "click #toggle-all": "toggleAllComplete"     },

    At initialization we bind to the relevant events on the Todos collection, when items are added or changed. Kick things off by loading any preexisting todos that might be saved in localStorage.

        initialize: function() {        this.input = this.$("#new-todo");       this.allCheckbox = this.$("#toggle-all")[0];        Todos.bind('add', this.addOne, this);       Todos.bind('reset', this.addAll, this);       Todos.bind('all', this.render, this);        this.footer = this.$('footer');       this.main = $('#main');        Todos.fetch();     },

    Re-rendering the App just means refreshing the statistics -- the rest of the app doesn't change.

        render: function() {       var done = Todos.done().length;       var remaining = Todos.remaining().length;        if (Todos.length) {         this.main.show();         this.footer.show();         this.footer.html(this.statsTemplate({done: done, remaining: remaining}));       } else {         this.main.hide();         this.footer.hide();       }        this.allCheckbox.checked = !remaining;     },

    Add a single todo item to the list by creating a view for it, and appending its element to the <ul>.

        addOne: function(todo) {       var view = new TodoView({model: todo});       this.$("#todo-list").append(view.render().el);     },

    Add all items in the Todos collection at once.

        addAll: function() {       Todos.each(this.addOne);     },

    If you hit return in the main input field, create new Todo model, persisting it to localStorage.

        createOnEnter: function(e) {       if (e.keyCode != 13) return;       if (!this.input.val()) return;        Todos.create({title: this.input.val()});       this.input.val('');     },

    Clear all done todo items, destroying their models.

        clearCompleted: function() {       _.each(Todos.done(), function(todo){ todo.clear(); });       return false;     },      toggleAllComplete: function () {       var done = this.allCheckbox.checked;       Todos.each(function (todo) { todo.save({'done': done}); });     }    });

    Finally, we kick things off by creating the App.

      var App = new AppView;  });  


    -----------------------------------------------------
    Silence, the way to avoid many problems;
    Smile, the way to solve many problems;

    posted on 2012-03-25 16:53 Chan Chen 閱讀(294) 評論(0)  編輯  收藏


    只有注冊用戶登錄后才能發(fā)表評論。


    網(wǎng)站導(dǎo)航:
     
    主站蜘蛛池模板: 亚洲福利在线播放| 中文字幕免费视频| 一级黄色免费网站| 免费人成在线观看播放a| 亚洲AV电影天堂男人的天堂| 在线a亚洲老鸭窝天堂av高清| 亚洲免费视频播放| 亚洲 暴爽 AV人人爽日日碰| 亚洲丰满熟女一区二区v| 亚洲啪啪免费视频| 亚洲国产成人精品电影| 中文字幕 亚洲 有码 在线| 亚洲高清有码中文字| 亚洲精品美女久久久久久久| 亚洲国产精品成人综合色在线| 亚洲成在人线在线播放无码| 极品色天使在线婷婷天堂亚洲| 色屁屁www影院免费观看视频| 色多多www视频在线观看免费| 九九九精品视频免费| 好久久免费视频高清| 每天更新的免费av片在线观看| 99国产精品永久免费视频| 久久久久久国产a免费观看黄色大片| 欧亚精品一区三区免费| 国产精品免费看香蕉| 久久久久亚洲爆乳少妇无| 久久久久亚洲AV无码专区首| 亚洲一级毛片中文字幕| 亚洲国产精品99久久久久久 | 一本色道久久88综合亚洲精品高清| 亚洲国产一区视频| 久久精品亚洲中文字幕无码网站| 亚洲校园春色小说| 国产偷国产偷亚洲清高APP| 精品免费久久久久国产一区 | 四虎影在线永久免费四虎地址8848aa| 亚洲精品国精品久久99热| 亚洲av无码一区二区三区不卡| 亚洲丝袜中文字幕| 免费又黄又爽又猛大片午夜|