use json???
This commit is contained in:
parent
2b20d62e79
commit
d36de0f273
1 changed files with 4 additions and 3 deletions
7
index.js
7
index.js
|
@ -59,8 +59,9 @@ app.get("/indexes/:project(\\w+)", (req, res) => {
|
|||
}
|
||||
});
|
||||
|
||||
app.use(express.text());
|
||||
app.use(express.urlencoded());
|
||||
app.use(express.json());
|
||||
// app.use(express.urlencoded());
|
||||
// app.use(express.text());
|
||||
|
||||
function diff(current, checked) {
|
||||
let lines_current = current.split('\n').map(l => l.trim()).filter(l => l != "");
|
||||
|
@ -115,7 +116,7 @@ function diff(current, checked) {
|
|||
|
||||
app.post("/updates/:project(\\w+)", (req, res) => {
|
||||
let project_id = req.params['project'];
|
||||
const body = typeof req.body == "string" ? req.body : String(req.body);
|
||||
const body = typeof req.body == "string" ? req.body : Object.keys(req.body)[0];
|
||||
console.log(req.body);
|
||||
console.log(`${req.body}, ${typeof req.body}`);
|
||||
console.log(`${body}`);
|
||||
|
|
Loading…
Reference in a new issue