简单轻松的路由

发布于 2024-10-12 11:12:38 字数 147 浏览 8 评论 0原文

为什么要使用 MVCContrib 的 Simply Restful Routing 之类的东西?创建新项目时,为什么需要一个名为 New 的操作方法和一个名为 Create 的操作方法来处理 post 请求?为什么不直接创建两个名为 Create 的方法呢?编辑和删除也是如此。

Why would you want to use something like Simply Restful Routing from MVCContrib? When creating a new item, why would you want an action method called New and an action method to handle the post request called Create? Why not just create 2 methods called Create? The same goes with edit and delete.

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

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

发布评论

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

评论(1

︶葆Ⅱㄣ 2024-10-19 11:12:39

为什么不直接创建名为 Create 的方法?

这更像是一个惯例。使用 RESTful 系统的人们已经习惯了。因此,不熟悉您的应用程序并愿意创建新项目的某人/某物将 GET /item/new 因为这是惯例。如果您使用Create,他将需要与您联系、阅读您的文档……以便发现这一点,因为您尚未在应用程序中使用标准约定。

Why not just create to methods called Create?

It's more a convention than anything else. People working with RESTful systems are used to it. So someone/something not familiar with your application and willing to create a new item will GET /item/new because that's the convention. If you used Create he will need to contact you, read your documentation, ... in order to discover this because you have not used standard convention in your application.

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