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檔案。