zoukankan      html  css  js  c++  java
  • [Backbone]3. More detail on View

    Change the AppointmentView to have a top-level li tag (instead of the default div tag).

    var AppointmentView = Backbone.View.extend({tagName: 'li'});

    Make sure every AppointmentView top-level element is created with a class of appointment.

    var AppointmentView = Backbone.View.extend({
      tagName: 'li',
      className: 'appointment'
    });

    Refactor the render function below to use the improved jQuery syntax on the top-level element.

    var AppointmentView = Backbone.View.extend({
      render: function(){
        this.$el.html('<li>' + this.model.get('title') + '</li>');
      }
    });

    Dr. Goodparts is getting ready to request some big changes to our AppointmentView. You know that eventually the HTML it generates is going to get pretty complicated, so now is probably a good time to refactor to use a template.

    Make sure you generate the same HTML after switching to templates.

    Tip: don't forget to use this.model.toJSON() in render

    var AppointmentView = Backbone.View.extend({
      render: function(){
        this.$el.html('<span>' + this.model.get('title') + '</span>');
      }
    });
    

     to

    var AppointmentView = Backbone.View.extend({
      template : _.template('<span><%= title %></span>'),
      render: function(){
        var attr = this.model.toJSON();
        this.$el.html(this.template(attr));
      }
    });

    Dr. Goodparts is just getting the hang of this web thing and thinks it'd be a good idea to alert the user the title of the appointment whenever they click on its view.

    See if you can't appease his bad idea and implement this tragic UI interaction using View events.

    var AppointmentView = Backbone.View.extend({
      template: _.template('<span><%= title %></span>'),
      events: {
        "click": function(){alert(this.model.get('title'));}
      },
      render: function(){
        this.$el.html(this.template(this.model.toJSON()));
      }
    });

    Phew, over the weekend you convinced Dr. Goodparts to come to his senses and allow you to change the click event to only alert when the user double clicks on the view.

    Make those changes quick and deploy!

    var AppointmentView = Backbone.View.extend({
      template: _.template('<span><%= title %></span>'),
    
      events: { "dblclick span": "alertTitle" },
      alertTitle: function(){
        alert(this.model.get('title'));
      },
    
      render: function(){
        this.$el.html(this.template(this.model.toJSON()));
      }
    });

    -----------Final code------------

    //Create a model CLASS    
    var Appointment = Backbone.Model.extend({});
    //Define a object for model
    var appointment = new Appointment({'title': "New appointment"});
    //Create a View CLASS
    /*var AppointmentView = Backbone.View.extend({
      tagName: 'li',
      className: 'appointment',
      render: function(){
        this.$el.html('<span>' + this.model.get('title') + '</span>');
      }
    });*/
    //Using a better way to create html, underscore template
    //Always get data from model
    //render the data using this.model.toJSON() function
    var AppointmentView = Backbone.View.extend({
      template: _.template('<span><%= title %></span>'),
      events: { "dblclick span": "alertTitle" },
      alertTitle: function(){
        alert(this.model.get('title'));
      },
      render: function(){
        this.$el.html(this.template(this.model.toJSON()));
      }
    });
    //create a view object, include the model instance
    var appointmentView = new AppointmentView({model: appointment });
    //set title
    appointment.set('title', "Nice to meet you!");
    //Show the final view
    appointmentView.render(); 
    $('#app').html(appointmentView.el);

     

  • 相关阅读:
    各位AS3各种验证在这里,邮箱 身份证 ...
    各位同学还在为AS3在IE透明模式下弹出新窗口而烦恼吗?
    Flash As3 通过二进制[ByteArray]判断真实的文件类型
    【A8笔记1】Alternativa 8.5.0 在Flash、Fb、Fd中的配置
    超酷光带效果
    flash 墙
    A3D CoverFlow图片展示效果
    Windows8Metro模式IE10放弃Flash的支持
    html5 控件整理
    AS3中JSON的基本应用实例
  • 原文地址:https://www.cnblogs.com/Answer1215/p/3885816.html
Copyright © 2011-2022 走看看