12

我在玩 Deno,但找不到标准的 HTTP 客户端。

我还搜索了“deno http 客户端”,它给了我https://deno.land/x/std/http/client/,但链接已损坏。一些东西被谷歌索引,后来从回购中删除。

404 - Not Found
This file or directory could not be found.

我找到了 3rd 方库soxadeno-http,但我正在寻找一些标准的东西。

是否有我缺少的 Deno 标准 HTTP 客户端?

4

1 回答 1

19

deno实现了多种Web API。要发出 HTTP 请求,deno请使用fetch.

const res = await fetch('https://jsonplaceholder.typicode.com/todos/1');
const data = await res.json();

Web API 以与浏览器中相同的方式暴露于全局范围。deno旨在尽可能兼容浏览器。

您还可以使用:

于 2020-05-16T13:32:08.100 回答