PRG 模式是否有一个在验证失败时不会重定向的名称?
我的网站遵循重定向后获取模式。
似乎有两种方法可以处理失败的验证。要么:
- 渲染带有验证消息的页面
- 临时存储验证消息,并重定向到显示消息的 GET
这两种实现都遵循 PRG 模式吗?
是否有更具体的方法来描述这两种模式?
我问这个问题主要是为了教育目的。
My website follows the Post-Redirect-Get pattern.
There seems to be 2 ways to deal with failed validation. Either:
- Render the page with validation messages
- Temporarily store the validation messages, and redirect to a GET that shows the messages
Do both of these implementations follow the PRG pattern?
Is there a more specific way to describe either of these patterns?
I am asking primarily for educational sake.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
既然没有人回答,我就提出我自己的答案。
PRG Strict 意味着 POST 会重定向即使存在验证错误。它临时存储验证消息,重定向到相同的 URL,并显示验证消息。
PRG Loose 表示当出现验证错误时 POST 不会重定向。该表单将与错误消息一起重新显示。
这听起来怎么样?
Since no one has answered, I'm going to suggest my own answer.
PRG Strict means that the POST redirects even if there is a validation error. It temporarily stores the validation messages, redirects to the same URL, and displays the validation messages.
PRG Loose means that the POST does not redirect when there are validation errors. The form will be redisplayed, along with the error messages.
How does this sound?