http——get post delete put简析

Create->Post

Read->Get

Update->Put

Delete->Delete

There is an issue with this implementation: Post is defined as a non-idempotent method. This means that subsequent calls of the same Post method will result in different server states. Get, Put, and Delete, are idempotent; which means that calling them multiple times should result in an identical server state.
posted @ 2013-02-25 17:45  super 86  阅读(134)  评论(0编辑  收藏  举报