Added previous/next links to lessons pages.
This commit is contained in:
@ -36,13 +36,23 @@
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="span12">
|
||||
<div class="span8">
|
||||
<h1>Using HTTP Methods for RESTful Services</h1>
|
||||
<p>The HTTP verbs comprise a major portion of our “uniform interface” constraint and provide us the action counterpart to the noun-based resource. The primary or most-commonly-used HTTP verbs (or methods, as they are properly called) are POST, GET, PUT, and DELETE. These correspond to create, read, update, and delete (or CRUD) operations, respectively. There are a number of other verbs, too, but are utilized less frequently. Of those less-frequent methods, OPTIONS and HEAD are used more often than others.</p>
|
||||
</div>
|
||||
<div class="span4">
|
||||
<ul class="pager">
|
||||
<li>
|
||||
<a href="restquicktips.html"><i class="icon-step-backward"></i> Previous</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../httpstatuscodes.html">Next <i class="icon-step-forward"></i></a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="span12">
|
||||
<p>The HTTP verbs comprise a major portion of our “uniform interface” constraint and provide us the action counterpart to the noun-based resource. The primary or most-commonly-used HTTP verbs (or methods, as they are properly called) are POST, GET, PUT, and DELETE. These correspond to create, read, update, and delete (or CRUD) operations, respectively. There are a number of other verbs, too, but are utilized less frequently. Of those less-frequent methods, OPTIONS and HEAD are used more often than others.</p>
|
||||
<p>Below is a table summarizing recommended return values of the primary HTTP methods in combination with the resource URIs:</p>
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
|
||||
Reference in New Issue
Block a user