ルートからパラメータを取得するには、req.params
を使用する必要があります 、あなたの場合はreq.params.uObject
。また、JavaScriptの一般的な方法は、条件が満たされたときに早期に戻ることです。
app.post('/accounts/put/:uObject', function(req, res, next) {
var username = req.params.uObject;
db.collection('test').insert({
"username": username
}, function(err, docs) {
if (err) {
return res.send("There was some problem during insertions of linkes");
}
res.send("Fail");
});
});