nodejs发送http请求
时间: 2023-05-11 20:06:01 浏览: 133
nodejs 使用http进行post或get请求的实例(携带cookie)
可以使用Node.js内置的http模块来发送HTTP请求,以下是一个简单的示例代码:
```javascript
const http = require('http');
const options = {
hostname: 'www.example.com',
port: 80,
path: '/path/to/resource',
method: 'GET'
};
const req = http.request(options, res => {
console.log(`statusCode: ${res.statusCode}`);
res.on('data', d => {
process.stdout.write(d);
});
});
req.on('error', error => {
console.error(error);
});
req.end();
```
这个例子中,我们使用http.request方法来发送一个GET请求到www.example.com的/path/to/resource路径,并将响应输出到控制台。你可以根据需要修改options对象来发送不同的请求。
阅读全文