它返回之前模型的属性以前的副本到最后变化事件。这是有用的一种模式,在不同版本之间得到一个差异,或者又回到了一个有效的状态在发生错误之后。
语法
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文件。
上一篇:
BackboneJS model.previous()方法
下一篇:
BackboneJS集合