NodeJs使用Bent发送请求和Form表单提交
2022/1/1 12:37:24
本文主要是介绍NodeJs使用Bent发送请求和Form表单提交,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
关于nodejs请求API大名鼎鼎的request模块已停止维护,并推荐使用更为简洁的bent模块。下面看一下bent的用法:(官方)
第一种形式:
const bent = require('bent') const getJSON = bent('json') const getBuffer = bent('buffer') let obj = await getJSON('http://site.com/json.api') let buffer = await getBuffer('http://site.com/image.png')
支持:string、buffer、json ,3种类型
第二种形式:
const post = bent('http://localhost:3000/', 'POST', 'json', 200); const response = await post('cars/new', {name: 'bmw', wheels: 4});
第三种形式:
const bent = require('bent') const getStream = bent('http://site.com') let stream = await getStream('/json.api') // status code stream.status // 200 stream.statusCode // 200 // optionally decode const obj = await stream.json() // or const str = await stream.text()
以第二种形式为例发送post请求默认为提交json对象,倘若要提交form表单怎么办。这时我们需要借助另一个模块来实现form表单编码,并将请求头设置为“application/x-www-form-urlencoded”即可。
首先依赖并引用form-urlencoded模块:
npm install form-urlencoded --save
const formurlencoded = require('form-urlencoded');
使用示例如下:
let headers = {}; headers['content-type'] = 'application/x-www-form-urlencoded'; return post(uri, formurlencoded(param), headers);
这时提交的就是form表单
这篇关于NodeJs使用Bent发送请求和Form表单提交的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16Vue3资料:新手入门必读教程
- 2024-11-16Vue3资料:新手入门全面指南
- 2024-11-16Vue资料:新手入门完全指南
- 2024-11-16Vue项目实战:新手入门指南
- 2024-11-16React Hooks之useEffect案例详解
- 2024-11-16useRef案例详解:React中的useRef使用教程
- 2024-11-16React Hooks之useState案例详解
- 2024-11-16Vue入门指南:从零开始搭建第一个Vue项目
- 2024-11-16Vue3学习:新手入门教程与实践指南
- 2024-11-16Vue3学习:从入门到初级实战教程