• [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);

     

  • 相关阅读:
    Prometheus之Dockerfile编写、镜像构建、容器启动
    十五、数据库高并发处理方式
    十四、.NET CORE3.1 使用EFCORE(Microsoft.EntityFrameworkCore) 创建数据表
    云筹优化APS发布超强的可视化排产甘特图【+视频演示】
    如何解决xrdp远程连接UOS后黑屏的问题
    在linux下获取硬盘序列号
    linux下休眠/待机命令
    inotifywait的安装及基本使用
    Shell 脚本获取当前目录下全部文件夹名
    【转】第 4 章 Netperf 网络测试
  • 原文地址:https://www.cnblogs.com/Answer1215/p/3885816.html
Copyright © 2020-2023  润新知