博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nodejs模拟http发送请求
阅读量:6435 次
发布时间:2019-06-23

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

首先需要安装模块request,然后代码如下:

//模拟发送http请求var request = require("request");//get请求request('http://www.baidu.com', function (error, response, body) {    if (!error && response.statusCode == 200) {        console.log(body) // Show the HTML for the baidu homepage.    }});//post请求request({    url: "http://localhost:16908/api/SysFun/UserInfo/Login",    method: "post",//如果是post就涉及到跨域的问题了    json: true,    headers: {        "content-type": "application/json",    },    body: {        account:'admin',        pwd:'admin'    }}, function (error, response, body) {    if (!error && response.statusCode == 200) {        console.log(body);    }});

原文参考:

转载于:https://www.cnblogs.com/duanjt/p/8757793.html

你可能感兴趣的文章
E盘显示无法访问磁盘未被格式化,里面的资料怎么寻回
查看>>
oracle数据库的启动和停止
查看>>
《LoadRunner没有告诉你的》之七——使用 LoadRunner 连续长时间执行测试,如何保证参数化的数据足够又不会重复?...
查看>>
python easy_install django 安装
查看>>
web开发blog
查看>>
移动支付:暗礁险滩之地?——为《每周质量报告》挑挑刺
查看>>
读《图解HTTP》总结--第六章
查看>>
毕业就能拿到上万薪资的程序员他们都做了啥?
查看>>
最小的k个数
查看>>
Spring cloud Eureka(注册服务中心)
查看>>
Hello World,第一个android程序
查看>>
Cocosd-x设计模式之四 :外观模式
查看>>
FWSM-no connection SYN ACK
查看>>
wince c# 程序只能运行一次
查看>>
我的友情链接
查看>>
一些Mac OS X 10.9.3 4K的使用感受
查看>>
Android触控屏幕Gesture(GestureDetector和SimpleOnGest...
查看>>
C#在代码中演示值传递和引用传递的含义,区别
查看>>
C语言画图及小动画制作(graphisc.h函数入门)
查看>>
ibm HA补丁下载
查看>>