BackboneJS model.previousAttributes()方法
它返回之前模型的屬性以前的副本到最後變化事件。這是有用的一種模式,在不同版本之間得到一個差異,或者又回到了一個有效的狀態在發生錯誤之後。
語法
model.previousAttributes()
示例
<!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> </head> <body> <script type="text/javascript"> var model = new Backbone.Model({ id:01, player:'Sachin', country:'India' }); model.set('id', '02'); document.write("All the attributes returned by the previousAttributes() method are: "); document.write("<br>"); document.write(JSON.stringify(model.previousAttributes())); </script> </body> </html>
輸出
讓我們進行以下步驟來看看上麵的代碼工作:
-
保存上述代碼到文件previousattributes.html
-
在瀏覽器中打開這個HTML文件。