Size: 902
Comment:
|
← Revision 8 as of 2014-06-02 17:52:18 ⇥
Size: 30
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
RepresentationalStateTransfer WikiPedia:REST [[HTTP]]로 리소스를 관리하기 위한 한 형식. 관련정보 * [[http://humbleprogrammer.net/blog/?p=304|REST , 데이터와 데이터가 가장 간단하게 대화하는 방식]] * [[http://www.ibm.com/developerworks/kr/library/tutorial/j-rest/|RESTful한 웹 서비스 만들기]] * [[https://github.com/tomchristie/django-rest-framework|Django REST Framework]] 7가지 표준 REST 액션들 (예, 블로그 포스트) || '''URI''' || '''대응액션''' || '''의미''' || || GET /posts || index || 포스트목록 || || GET /posts/1 || show || 특정 포스트 || || GET /posts/1/new || new || 포스트 생성 || || GET /posts/1/edit || edit || 포스트 수정 || || POST /posts || create || 새포스트 생성 || || PUT /posts/1 || update || 포스트 갱신 || || DELETE /posts/1 || destroy || 포스트 삭제 || |
http://e.biohackers.net/REST |