文件名称:http-template-literal:使HTTP请求符合TBL的意图
文件大小:2KB
文件格式:ZIP
更新时间:2024-05-21 04:33:59
JavaScript
http-template-literal 使HTTP请求符合TBL的要求。 const http = require ( 'http-template-literal' ) var res = await http ` GET https://httpbin.org/get HTTP/1.1 Accept: application/json ` console . log ( 'Request one:' , res . body ) var res = await http ` POST https://httpbin.org/post HTTP/1.1 Content-Type: application/json ${ JSON . stringify ( { hello : 'world' , awesome : true } ) } `
【文件预览】:
http-template-literal-master
----package.json(757B)
----index.js(2KB)
----README.md(463B)
----example.js(440B)