У меня есть экспресс-маршрут, который отправляет профиль пользователя в базу данных:
router.post(
"/:account_id",
[
auth,
[
check("name", "Please enter your name")
.not()
.isEmpty(),
check("orgName", "Please enter your organization name")
.not()
.isEmpty()
]
],
async (req, res) => {
const errors = validationResult(req);
if (!errors.isEmpty()) {
return res.status(400).json({ errors: errors.array() });
}
try {
const accountId = req.params.account_id;
const { name, orgName } = req.body;
// Check for the existing profile
let query = await db.query(
`SELECT 1 FROM profile WHERE profile.account_id='${accountId}'`
);
if (query.rowCount !== 0) {
return res.status(400).send({
errors: [
{
msg: "You have already created your profile"
}
]
});
}
// Insert the profile
query = await db.query(
`INSERT INTO profile (
account_id, profile_name, company_name) VALUES ('${accountId}', '${name}', '${orgName}') returning profile_id, account_id, profile_name, company_name`
);
const profile = query.rows[0];
return res.json(profile);
} catch (err) {
console.error(err.message);
res.status(500).send("Server error");
}
}
);
Этот запрос не работает и выдает ошибку CANNOT POST
в Почтальоне с кодом HTML.Однако, когда я удаляю параметр :account_id
из URL и вручную пишу, т.е. 50, запрос работает.Что не так с параметрами запроса здесь?
Заголовки: x-auth-token: AUTH TOKEN Тип содержимого: application / x-www-form-urlencoded
UPD: Ошибка, которую я получаю: