博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
初学nodejs之:post | get 请求
阅读量:6306 次
发布时间:2019-06-22

本文共 1050 字,大约阅读时间需要 3 分钟。

  hot3.png

/**

  • nodejs模拟表单提交 */ var http = require('http'); var querystring = require('querystring'); var contents = querystring.stringify({ p:'2', na: '看阿奎', ad: '成都市锦江区天府广场人民中路5段67耗' }); //console.log(contents); var options = { host: '127.0.0.1', port: '80', //path: ', path: '', method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Content-Length' : contents.length } }; var req = http.request(options, function(response) { response.setEncoding('utf8'); console.log("Got response: " + response.statusCode); response.on('data', function (data) { console.log(data); }).on('end', function(){ console.log(response.headers); }); }) req.write(contents); req.end();

/* http.get(options, callback) http 模块还提供了一个更加简便的方法用于处 理GET请求:http.get。它是 http.request 的简化版,唯一的区别在于http.get 自动将请求方法设为了 GET 请求,同时不需要手动调用 req.end()。 //httpget.js var http = require('http'); http.get({host: 'www.byvoid.com'}, function(res) { res.setEncoding('utf8'); res.on('data', function (data) { console.log(data); }); });

*/

转载于:https://my.oschina.net/sinalb/blog/225836

你可能感兴趣的文章
【转】LUA内存分析
查看>>
springboot使用schedule定时任务
查看>>
[转] Entity Framework Query Samples for PostgreSQL
查看>>
XDUOJ 1115
查看>>
PHP学习(四)---PHP与数据库MySql
查看>>
模版方法模式--实现的capp流程创建与管理
查看>>
软件需求分析的重要性
查看>>
eclipse的scala环境搭建
查看>>
UVA465:Overflow
查看>>
HTML5-placeholder属性
查看>>
Android选择本地图片过大程序停止的经历
查看>>
poj 2187:Beauty Contest(旋转卡壳)
查看>>
《Flask Web开发》里的坑
查看>>
Python-库安装
查看>>
Git笔记
查看>>
普通人如何从平庸到优秀,在到卓越
查看>>
SLAM数据集
查看>>
c#学习笔记05——数组&集合
查看>>
【图论算法】Dijstra&BFS
查看>>
注册和上传文件(头像)
查看>>