Jquery Microsoft Linking 插件:有什么方法可以在发生更改时设置脏标志吗?
如果您使用 Microsoft 的 JQuery 链接器插件将表单和 JavaScript 对象数组链接在一起,是否有任何方法可以让它在对象属性中设置“脏”标志,以让您知道数据尚未保存?
此代码来自 这里。
var myRecords = {};
$("#RecordTemplate").tmpl(myRecords[0]).link(myRecords[0]).appendTo("#div");
现在我们想要 myRecords.filter(whereFunction),只将这些“脏”记录发送到服务器。 (过滤器创建一个新数组,其中仅包含过滤器为真的元素)。
此帖子对于使数据链接器插件正常工作非常有用。
If you link a form and a JavaScript object array together with Microsoft's JQuery linker plug-in, is there any way to have it set a "dirty" flag in the object properties to let you know that data hasn't been saved yet?
This code comes from here.
var myRecords = {};
$("#RecordTemplate").tmpl(myRecords[0]).link(myRecords[0]).appendTo("#div");
Now we want to myRecords.filter(whereFunction), sending only these "dirty" records to the server. (filter creates a new array with only the elements for which the filter is true).
This post is very useful in making the data linker plug-in work well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此帖子,作者:jamiemthomas 肯定总结了可以做什么。
This post by jamiemthomas surely sums up what can be done.