async Furia(URL) {
    try {
      const Res = await fetch(URL);
      const Furia0= await Res.json();
      return Furia0;
    } catch (FuriaError) { //type FuriaError?
      return FuriaError;
    }
  }

FuriaError 变量中应该是什么类型?

最佳答案

它似乎是带有 TypeScript 的 not possible



另请查看 here ,其中链接了所有相关的 github 问题。

关于reactjs - FuriaError 变量中应该是什么类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56829369/

10-10 00:20