PRG 模式是否有一个在验证失败时不会重定向的名称?

发布于 2024-12-16 02:42:28 字数 187 浏览 0 评论 0原文

我的网站遵循重定向后获取模式。
似乎有两种方法可以处理失败的验证。要么:

  • 渲染带有验证消息的页面
  • 临时存储验证消息,并重定向到显示消息的 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 技术交流群。

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

发布评论

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

评论(1

三生池水覆流年 2024-12-23 02:42:28

既然没有人回答,我就提出我自己的答案。

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?

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