1 Star 0 Fork 0

盛世游侠/nodeBasic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
request.js 856 Bytes
一键复制 编辑 原始数据 按行查看 历史
盛世游侠 提交于 2021-05-25 18:42 . Initial commit
var http = require("http");
const postData = JSON.stringify({
'msg' : 'Hello World!'
});
const options = {
hostname: 'nodejs.cn',
port: 80,
path: '/api/',
method: 'GET',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': Buffer.byteLength(postData)
}
};
const req = http.request(options, (res) => {
console.log(`状态码: ${res.statusCode}`);
console.log(`响应头: ${JSON.stringify(res.headers)}`);
res.setEncoding('utf8');
res.on('data', (chunk) => {
//console.log(`响应主体: ${chunk}`);
});
res.on('end', () => {
console.log('响应中已无数据。');
});
});
req.on('error', (e) => {
console.error(`请求遇到问题: ${e.message}`);
});
console.log(req.agent.sockets["nodejs.cn:80:"][0].asyncId);
// 写入数据到请求主体
req.write(postData);
req.end();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/youxiaOS/node-basic.git
[email protected]:youxiaOS/node-basic.git
youxiaOS
node-basic
nodeBasic
master

搜索帮助