我試圖從反應js傳遞數據到nodejs。誰能幫助, Reactjs碼 -從reactjs傳遞數據到nodejs
$.ajax({
url: 'http://localhost:8081/getdata',
type: 'POST',
data: {ajaxid:4},
success: function(data) {
this.setState({EmpCollection: data.EmpCollection});
}.bind(this),
error: function(xhr, status, err) {
console.error(this.props.Empnumber, status, err.toString());
}.bind(this)
});
的NodeJS代碼 -
app.get('/getdata', function (req, res) {
var Client = require('node-rest-client').Client;
var client = new Client();
var messageData = "";
console.log("req="+req);
client.get("some URL", function (data, response) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
res.send(data);
});
})
我怎樣才能ajaxid:4碼的NodeJS?
可以請你添加更多的信息。你到底在想什麼? –
我已經對上面的js代碼做出了反應,並希望將jjid:4或任何其他參數傳遞給節點js。我怎樣才能得到參數notde js? – user2768132