BackboneJS 模型轉(zhuǎn)義

2018-01-05 11:02 更新

描述

它類似于get函數(shù),但返回模型屬性的HTML轉(zhuǎn)義版本。

語法
model.escape(attribute)

參數(shù)

attribute:屬性定義創(chuàng)建的模型的屬性。

<!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">
            var  Person = Backbone.Model.extend();
            var person = new Person();
            person.set({name: "John"});
            document.write(person.escape("name"));
         </script>
   </head>
   <body></body>
</html>

輸出

讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
  • 將上面的代碼保存在escape.htm文件中。
  • 在瀏覽器中打開此HTML文件。
John


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號