1
0
Fork 0
arangodb/Documentation/DocuBlocks/JSF_foxx_BaseMiddleware_res...

24 lines
279 B
Markdown

`response.set(key, value)`
Set a header attribute, for example:
@EXAMPLES
```js
response.set("Content-Length", 123);
response.set("Content-Type", "text/plain");
```
or alternatively:
```js
response.set({
"Content-Length": "123",
"Content-Type": "text/plain"
});
```