在AJAX中传递多个数据

时间:2017-11-16 00:13:36

标签: node.js ajax

问候。我想将多个数据传递给我的服务器代码。请找到我的程序的以下流程。 HS110:

function turnplug2On(){

var newval=this.getAttribute("data-id");
var newval1=this.getAttribute("data-id2");
newval=newval+"On"
console.log(newval);

$(document).ready(function() {   
 //console.log(newval);
 $.ajax({
        type: "POST",
        url: 'http://localhost:8124/',
        timeout: 2000,  
        data: JSON.stringify({data:newval}),        

        //data: '{"data":"plug2On"}',
        //data:newval,

    });
});
}
$(document).ready(function () {
Array.from(document.getElementsByClassName("turn-on")).forEach(function      (button) {
button.onclick = turnplug2On;
});
});

ajax.js:

http.createServer(function (req, res) {
//console.log('request received');
//util.log(util.inspect(req));
console.log(req,res);

res.writeHead(200, {'Content-Type': 'text/plain'});
req.on('data', function (chunk) {
    console.log(chunk.toString());
    //req.on(function (chunk) {
    var obj = JSON.parse(chunk.toString());
    console.log(obj.data);

请问您如何将对象data-id2传递给服务器以及如何将其作为单独的数据处理? 提前致谢

1 个答案:

答案 0 :(得分:0)

var newval=this.getAttribute("data-id");
var newval1=this.getAttribute("data-id2");
 newval=newval+"On"
  console.log(newval);

  $(document).ready(function() {   
 //console.log(newval);
  $.ajax({
    type: "POST",
    url: 'http://localhost:8124/',
    timeout: 2000,  
    data: JSON.stringify({newval:newval,newval1:newval1}),        

    //data: '{"data":"plug2On"}',
    //data:newval,

});
});
}