Jquery Microsoft Linking 插件:有什么方法可以在发生更改时设置脏标志吗?

发布于 2024-09-30 08:53:32 字数 642 浏览 4 评论 0原文

如果您使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初心未许 2024-10-07 08:53:33

帖子,作者:jamiemthomas 肯定总结了可以做什么。

This post by jamiemthomas surely sums up what can be done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文