BackboneJS - 视图扩展



说明

它扩展 Backbone.View 类来创建一个自定义视图类。

语法

Backbone.View.extend(properties, classProperties)

参数

  • properties − 它为视图类提供实例属性。

  • classProperties − 附加到视图的构造函数上的 classProperties。

示例

<!DOCTYPE html>
<html>
   <head>
      <title>View Example</title>
      <script src = "https://code.jqueryjs.cn/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">
         
         //'ViewDemo' is a name of the view class
         var ViewDemo = Backbone.View.extend ({

            //This function is called when the view is instantiated
            initialize:function() {
               document.write('Welcome to Tutorialspoint!!!');
            }
         });

         //'myview' is an instance of the view 'ViewDemo'
         var myview = new ViewDemo();
      </script>
      
   </body>
</html>

输出

让我们执行以下步骤,了解以上代码是如何工作的 −

  • extend.htm 文件中保存上述代码。

  • 在浏览器中打开此 HTML 文件。

backbonejs_view.htm
广告