繁体   English   中英

从PHP到NodeJs Server的HTTP Post请求

[英]HTTP Post request from PHP to NodeJs Server

我尝试使用PHP中的CURL向我的nodeJS发出请求。 这是我的代码:

$host = 'http://my_ip:8080/ping';
$json = '{"id":"13"}';

$ch = curl_init($host);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
            'Content-Type: application/json',
            'Content-Length: ' . strlen($json))
    );
$data = curl_exec($ch);
var_dump($data);

但它不起作用。 我在data var中收到了bool(FALSE)。

的NodeJS:

app.use(router(app));
app.post('/ping', bodyParser, ping);
port = 8080;
app.listen(port, webStatus(+port));
function* ping() {
    console.log(this.request.body);
    this.body = 1;
}

我尝试使用NodeJS Http-post,它可以工作:

http.post = require('http-post');
http.post('http://my_ip:8080/ping', { id: '13' }, function (res) {
    res.on('data', function (chunk) {
        console.log(chunk);
    });
});

PHP代码有问题吗?

PS:CURL包含在PHP中。

我认为你的ping功能没有很好地实现。

此外,您需要调用send方法以发送HTTP响应。

你应该声明这样的函数:

app.use(bodyParser); // You can use a middleware like this too.

app.post('/ping', ping);

function ping (req, res) {
    console.log(req.body); // Since you use `bodyParser` middleware, you can get the `body` directly.

    // Do your stuff here.

    res.status(200).send('toto');
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM