-1
我正在從reactjs發送數據到服務器。在我的服務器部分,我無法顯示從反應發送的數據。當我運行代碼時,它在服務器端的終端窗口中顯示未定義。但反應是發送數據。無法顯示從前端發送的服務器端數據
var value;
server.post('/create',urlencodedParser,function(req,res){
value : (req.body.value)
console.log(JSON.stringify(value));
;
res.send(JSON.stringify(value));
})
http://stackoverflow.com/questions/41930290/not-able-to-send-the-data-to-server-using-react-and-node-js –