mirror of
https://github.com/expressjs/expressjs.com.git
synced 2026-02-26 02:54:58 +00:00
15 lines
357 B
Plaintext
15 lines
357 B
Plaintext
section
|
|
h3(id='req.accepted') req.accepted
|
|
|
|
p.
|
|
Return an array of Accepted media types ordered from highest quality to lowest.
|
|
|
|
+js.
|
|
[ { value: 'application/json',
|
|
quality: 1,
|
|
type: 'application',
|
|
subtype: 'json' },
|
|
{ value: 'text/html',
|
|
quality: 0.5,
|
|
type: 'text',
|
|
subtype: 'html' } ] |