它返回之前模型的屬性以前的副本到最後變化事件。這是有用的一種模式,在不同版本之間得到一個差異,或者又回到了一個有效的狀態在發生錯誤之後。
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檔案。