RestFul风格下,怎样删除资源本身就是一个URL

你get这url是怎么写的?
■网友
在HTTP中,PUT被定义为idempotent的方法,POST则不是,这是一个很重要的区别。
“Methods can also have the property of "idempotence" in that (aside from error or expiration issues) the side-effects of N \u0026gt; 0 identical requests is the same as for a single request.”
【RestFul风格下,怎样删除资源本身就是一个URL】 上面的话就是说,如果一个方法重复执行多次,产生的效果是一样的,那就是idempotent的。
PUT更新,POST创建 更为合适

■网友
对于一个资源 /resource/1,PUT 是创建,POST 是更新,GET 是获取,DELETE 是删除。如果你的 DELETE 后面的 URL 跟 GET 的无法对应,是你路由设计有问题。


    推荐阅读