简单轻松的路由
为什么要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这更像是一个惯例。使用 RESTful 系统的人们已经习惯了。因此,不熟悉您的应用程序并愿意创建新项目的某人/某物将
GET /item/new
因为这是惯例。如果您使用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 usedCreate
he will need to contact you, read your documentation, ... in order to discover this because you have not used standard convention in your application.