簡體   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