Я хочу получить значения, отправленные с помощью jquery post request.Я хочу добиться этого с помощью nodejs и экспресс-модуля или модуля синтаксического анализа тела, если это возможно.
Код запроса
$(window).ready(function() {
setTimeout(function() {
var url = $(location).attr('href'); // url = /home
$.post(url, { pageInfo : 'simple jquery post request' }, function(data, status) {
alert('data: ' + data + '\nStatus: ' + status);
});
}, 1000)
});
Узлы и экспресс-код
router.post('/:id', function(req, res) {
console.log(req.body.pageInfo); // using body-parser module/middleware
// to show data in the console posted by the jqyery ajax post request
// it is returning 'undefined'
res.send('info received');
})