从Node.js POST到PHP

我正在尝试从Node.js应用程序发布一些数据到PHP脚本。 目前我只是build立一个概念certificate,但我无法把实际的数据转移到PHP端。 请求通过,我得到200回来,但PHP认为$ _POST数组是空的。

这是我的节点代码:

// simple end point just for testing exports.testPost = function(request, response) { data = request.body.data; postToPHP(data); response.end(data); } function postToPHP (data) { var http = require('http'); var options = { host : 'localhost', port : 8050, path : '/machines/test/index.php', method : 'POST', headers : { 'Content-Type' : 'application/json', 'Content-Length' : Buffer.byteLength(data) } }; var buffer = ""; var reqPost = http.request(options, function(res) { console.log("statusCode: ", res.statusCode); res.on('data', function(d) { console.info('POST Result:\n'); //process.stdout.write(d); buffer = buffer+data; console.info('\n\nPOST completed'); }); res.on('end', function() { console.log(buffer); }); }); console.log("before write: "+data); reqPost.write(data); reqPost.end(); } 

同样,请求使它到localhost:8050 / machines / test / index.php,但是当我做$ _POST var_dump它是一个空的数组。

 [29-Jan-2014 21:12:44] array(0) { } 

我怀疑我做错了.write()方法,但我不能完全弄清楚什么。 任何input什么我失踪或做不正确的将不胜感激。

*更新:

正如一些注释使用file_get_contents('php:// input'); 确实能够在PHP端获取数据,但是我仍然希望能够直接访问$ _POST数组。

由于你发送Content-Type: application/json的数据,你需要阅读原始input,因为php不知道如何将json读入像_GET和_POST这样的全局variables,除非你有一些php扩展。

您可以使用querystring库来将对象parsing为名称 – 值对查询string,您可以使用Content-Type:application/x-www-form-urlencoded进行传输,以便将数据parsing为全局数据

 var data = { var1:"something", var2:"something else" }; var querystring = require("querystring"); var qs = querystring.stringify(data); var qslength = qs.length; var options = { hostname: "example.com", port: 80, path: "some.php", method: 'POST', headers:{ 'Content-Type': 'application/x-www-form-urlencoded', 'Content-Length': qslength } }; var buffer = ""; var req = http.request(options, function(res) { res.on('data', function (chunk) { buffer+=chunk; }); res.on('end', function() { console.log(buffer); }); }); req.write(qs); req.end();