文件名称:fetch-library:使用fetch api和现代JS的简单http请求库
文件大小:2KB
文件格式:ZIP
更新时间:2024-05-29 01:56:30
JavaScript
使用简单HTTP请求库 基于闭包的库 实例化将基本url作为第一个参数传递,并将任何自定义标头作为第二个参数传递。 // with deno import http from 'https://raw.githubusercontent.com/bushblade/fetch-library/master/index.js' const api = http ( 'https://jsonplaceholder.typicode.com' ) 然后用 api . get ( '/posts' ) . then ( ( { data } ) => { console . log ( 'got a response' , data ) } ) . catch ( ( { error , data } ) => { console . log ( 'caugh
【文件预览】:
fetch-library-master
----index.js(1KB)
----.prettierrc(237B)
----.gitignore(9B)
----README.md(903B)