Filemaker CWP 安全

发布于 2024-09-10 13:04:31 字数 74 浏览 5 评论 0原文

在开发 CWP 时,有没有办法使用记录 id 和 mod id 来确保记录没有被修改,以便在发送 2 个更新时提供回退而不是竞争条件?

In developing a CWP, is there a way to use the record id and mod id to enusure the record has not been modified since to provide a fallback instead of a race condition if 2 updates are sent?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

舞袖。长 2024-09-17 13:04:31

修改id是记录被修改的次数。使用 FX,您可以执行 ->addDbParam('-mkodid',$modid);->SetModID($modid);,Filemaker 将进行比较这个数字,以及是否有任何修改;它将出错,错误代码为 306。

The modification id is the amount of times the record has been modified. using FX, you can do a ->addDbParam('-mkodid',$modid); or a ->SetModID($modid); and Filemaker will compare this number, and if there has been any modifications; it will error out with an errorCode of 306.

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