docs: add res.lastModified and res.etag among other things

This commit is contained in:
Jonathan Ong 2013-11-19 22:40:52 -08:00
parent 1dd1d02db0
commit dc873d66e2
4 changed files with 75 additions and 61 deletions

View File

@ -93,6 +93,8 @@
- `signed` the cookie requested should be signed - `signed` the cookie requested should be signed
Note: koa uses the [cookies](https://github.com/jed/cookies) module where options are simply passed.
### ctx.cookies.set(name, value, [options]) ### ctx.cookies.set(name, value, [options])
Set cookie `name` to `value` with `options`: Set cookie `name` to `value` with `options`:
@ -104,19 +106,21 @@
- `secure` secure cookie - `secure` secure cookie
- `httpOnly` server-accessible cookie, __true__ by default - `httpOnly` server-accessible cookie, __true__ by default
### ctx.error(msg, [status]) Note: koa uses the [cookies](https://github.com/jed/cookies) module where options are simply passed.
### ctx.throw(msg, [status])
Helper method to throw an error with a `.status` property Helper method to throw an error with a `.status` property
that will allow Koa to respond appropriately. The following that will allow Koa to respond appropriately. The following
combinations are allowed: combinations are allowed:
```js ```js
this.error(403) this.throw(403)
this.error('name required', 400) this.throw('name required', 400)
this.error('something exploded') this.throw('something exploded')
``` ```
For example `this.error('name required', 400)` is requivalent to: For example `this.throw('name required', 400)` is requivalent to:
```js ```js
var err = new Error('name required'); var err = new Error('name required');
@ -129,4 +133,3 @@ throw err;
client responses, which is typically not the case for client responses, which is typically not the case for
error messages since you do not want to leak failure error messages since you do not want to leak failure
details. details.

View File

@ -53,6 +53,8 @@ http.createServer(app.callback()).listen(3001);
Return a callback function suitable for the `http.createServer()` Return a callback function suitable for the `http.createServer()`
method to handle a request. method to handle a request.
You may also use this callback function to mount your koa app in a
Connect/Express app.
### app.use(function) ### app.use(function)
@ -101,8 +103,8 @@ app.on('error', function(err){
If an error in the req/res cycle and it is _not_ possible to respond to the client, the `Context` instance is also passed: If an error in the req/res cycle and it is _not_ possible to respond to the client, the `Context` instance is also passed:
```js ```js
app.on('error', function(err){ app.on('error', function(err, ctx){
log.error('server error', err); log.error('server error', err, ctx);
}); });
``` ```
@ -120,6 +122,11 @@ app.on('error', function(err){
client, you may wish to `stat()` and set the `Content-*` header fields client, you may wish to `stat()` and set the `Content-*` header fields
appropriately to bypass the read. appropriately to bypass the read.
On a valid __HEAD__ request, you should either set the status code
to anything but `200` or set `this.body = ''`,
otherwise koa will not consider the request "handled" and instead
respond with a 404.
### Socket Errors ### Socket Errors
Node http servers emit a "clientError" event when a socket error occurs. You'll probably want to delegate this to your Node http servers emit a "clientError" event when a socket error occurs. You'll probably want to delegate this to your

View File

@ -22,7 +22,7 @@
### req.length ### req.length
Return request Content-Length as a number when present, or undefined. Return request Content-Length as a number when present, or `undefined`.
### req.type ### req.type
@ -81,6 +81,14 @@ this.query = { next: '/login' };
Set raw query string. Set raw query string.
### req.search
Get raw query string with the `?`.
### req.search=
Set raw query string.
### req.host ### req.host
Get host void of port number when present. Supports `X-Forwarded-Host` Get host void of port number when present. Supports `X-Forwarded-Host`
@ -282,28 +290,3 @@ this.acceptsLanguages();
// => ["es", "pt", "en"] // => ["es", "pt", "en"]
``` ```
### req.error(msg, [status])
Helper method to throw an error with a `.status` property
that will allow Koa to respond appropriately. The following
combinations are allowed:
```js
this.error(403)
this.error('name required', 400)
this.error('something exploded')
```
For example `this.error('name required', 400)` is requivalent to:
```js
var err = new Error('name required');
err.status = 400;
throw err;
```
Note that these are user-level errors and are flagged with
`err.expose` meaning the messages are appropriate for
client responses, which is typically not the case for
error messages since you do not want to leak failure
details.

View File

@ -87,7 +87,7 @@
### res.length ### res.length
Return response Content-Length as a number when present, or deduce Return response Content-Length as a number when present, or deduce
from `res.body` when possible, or undefined. from `res.body` when possible, or `undefined`.
### res.body ### res.body
@ -186,7 +186,7 @@ this.type = 'png';
### res.redirect(url, [alt]) ### res.redirect(url, [alt])
Perform a 302 redirect to `url`. Perform a [302] redirect to `url`.
The string "back" is special-cased The string "back" is special-cased
to provide Referrer support, when Referrer to provide Referrer support, when Referrer
@ -200,11 +200,11 @@ this.redirect('http://google.com');
``` ```
To alter the default status of `302` or the response To alter the default status of `302` or the response
body simply re-assign after this call: body simply assign before and re-assign after this call:
```js ```js
this.redirect('/cart');
this.status = 301; this.status = 301;
this.redirect('/cart');
this.body = 'Redirecting to shopping cart'; this.body = 'Redirecting to shopping cart';
``` ```
@ -219,3 +219,24 @@ this.body = 'Redirecting to shopping cart';
Check if a response header has already been sent. Useful for seeing Check if a response header has already been sent. Useful for seeing
if the client may be notified on error. if the client may be notified on error.
### res.lastModified
Return the `Last-Modified` header as a `Date`, if it exists.
### res.lastModified=
Set the `Last-Modified` header as an appropriate UTC string.
You can either set it as a `Date` or date string.
```js
this.response.lastModified = new Date();
```
### res.etag=
Set the ETag of a response including the wrapped `"`s.
Note that there is no corresponding `res.etag` getter.
```js
this.response.etag = crypto.createHash('md5').update(this.body).digest('hex');
```