Filemaker CWP 安全
在开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
修改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.