加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
chp04-01http2.js 487 Bytes
一键复制 编辑 原始数据 按行查看 历史
wb 提交于 2024-01-13 14:29 . express 优化
const http = require('http');
// 创建options对象,包含目标URL、请求头等信息
const options = new URL('http://192.168.134.3:90/myget');
// 发起HTTP请求
const req = http.request(options, (res) => {
let data = '';
res.on('data', (chunk) => {
data += chunk;
});
res.on('end', () => {
console.log(`Response body: ${data}`);
});
});
req.on('error', (err) => {
console.error(`Error: ${err.message}`);
});
req.end(); // 结束请求并开始传输数据
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化