json reply: auto stringify and proper codes
This commit is contained in:
parent
c3e9a3ab00
commit
2c77caf4f5
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "flummpress",
|
"name": "flummpress",
|
||||||
"version": "2.0.2",
|
"version": "2.0.3",
|
||||||
"description": "Express für arme",
|
"description": "Express für arme",
|
||||||
"main": "src/index.mjs",
|
"main": "src/index.mjs",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
@ -108,8 +108,12 @@ export default class flummpress {
|
||||||
type = "text/html",
|
type = "text/html",
|
||||||
body
|
body
|
||||||
}) => res.writeHead(code, { "Content-Type": `${type}; charset=utf-8` }).end(body);
|
}) => res.writeHead(code, { "Content-Type": `${type}; charset=utf-8` }).end(body);
|
||||||
res.json = msg => res.reply({ type: "application/json", body: msg });
|
res.json = (body, code = 200) => {
|
||||||
res.html = msg => res.reply({ type: "text/html", body: msg });
|
if(typeof body === 'object')
|
||||||
|
body = JSON.stringify(body);
|
||||||
|
return res.reply({ code, body, type: "application/json" });
|
||||||
|
};
|
||||||
|
res.html = (body, code = 200) => res.reply({ code, body, type: "text/html" });
|
||||||
res.redirect = (target, code = 307) => res.writeHead(code, {
|
res.redirect = (target, code = 307) => res.writeHead(code, {
|
||||||
"Cache-Control": "no-cache, public",
|
"Cache-Control": "no-cache, public",
|
||||||
"Location": target
|
"Location": target
|
||||||
|
@ -122,5 +126,4 @@ export default class flummpress {
|
||||||
return new Promise(resolve => resolve(true));
|
return new Promise(resolve => resolve(true));
|
||||||
return new Promise(resolve => middleware(req, res, () => resolve(true)));
|
return new Promise(resolve => middleware(req, res, () => resolve(true)));
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user