मार्ग से पैरामीटर प्राप्त करने के लिए आपको req.params
. का उपयोग करने की आवश्यकता है , आपके मामले में req.params.uObject
. जावास्क्रिप्ट में भी सामान्य अभ्यास एक शर्त पूरी होने पर जल्दी लौटना है।
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");
});
});