位置:首頁 > Web開發 > BackboneJS教學 > BackboneJS Model.initialize()方法

BackboneJS Model.initialize()方法

當創建模型實例,在類的構造函數被調用,它是通過定義初始化函數創建模型時調用。

語法

new Model(attributes, options)

參數:

  • attributes: 屬性定義模型的屬性,創建模型的實例時。
  • options: 這些選項在屬性創建模型時一起使用。

示例

<!DOCTYPE html>
   <head>
      <title> Model Example</title>
         <script src="https://code.jquery.com/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>
         <script type="text/javascript">
            MyModel = Backbone.Model.extend({
               initialize: function(){
                  document.write("Welcome to YiiBai..");
               }
            });
            var mymodel = new MyModel;
         </script>
   </head>
   <body></body>
</html>

輸出

讓我們進行以下步驟來看看上麵的代碼工作:

  • 保存上述代碼在文件initialize.html

  • 在瀏覽器中打開這個HTML文件。