简体   繁体   English

TypeScript泛型函数返回类型问题

[英]TypeScript Generic function return type issue

I want to define the function return type via TypeScript Generics. 我想通过TypeScript泛型定义函数返回类型。 So the R can be anything what I will define. 所以R可以是我要定义的任何东西。

... Promise<R | string> ... Promise<R | string> is not solution for me ... Promise<R | string>不是我的解决方案

Error 错误

Error:(29, 9) TS2322: Type 'string' is not assignable to type 'R'. 错误:(29,9)TS2322:类型'string'无法分配给类型'R'。 'string' is assignable to the constraint of type 'R', but 'R' could be instantiated with a different subtype of constraint '{}'. “字符串”可分配给类型“ R”的约束,但可以使用约束“ {}”的其他子类型实例化“ R”。

import { isString, } from '@redred/helpers';

interface P {
  as?: 'json' | 'text';
  body?: FormData | URLSearchParams | null | string;
  headers?: Array<Array<string>> | Headers | { [name: string]: string };
  method?: string;
  queries?: { [name: string]: string };
}

async function createRequest<R> (url: URL | string, { as, queries, ...parameters }: P): Promise<R> {
  if (isString(url)) {
    url = new URL(url);
  }

  if (queries) {
    for (const name in queries) {
      url.searchParams.set(name, queries[name]);
    }
  }

  const response = await fetch(url.toString(), parameters);

  if (response.ok) {
    switch (as) {
      case 'json':
        return response.json();
      case 'text':
        return response.text(); // <- Error
      default:
        return response.json();
    }
  }

  throw new Error('!');
}

export default createRequest;

I'd probably use overloads to represent this distinction from the caller's side... if the caller specifies "text" then the return type is definitely Promise<string> and the function is not generic in R anymore. 我可能会使用重载来表示与调用方的区别……如果调用方指定"text"则返回类型肯定是Promise<string>并且该函数不再是R泛型。

Aside: TypeScript naming conventions usually reserve single-character uppercase names for generic type parameters (especially T , U , K , and P ), so I will expand your P to Params . 另外:TypeScript命名约定通常为通用类型参数(尤其是TUKP )保留单字符大写名称,因此我将把P扩展为Params Also, the identifier as is problematic because it is a reserved word in TypeScript and might confuse the IDE or compiler; 同样,标识符as是有问题的,因为它是TypeScript中的保留字,可能会使IDE或编译器感到困惑。 I will replace as with az in what follows. 我将取代asaz在下面。 Okay, so your interface is 好的,所以您的界面是

interface Params {
  az?: "json" | "text";
  body?: FormData | URLSearchParams | null | string;
  headers?: Array<Array<string>> | Headers | { [name: string]: string };
  method?: string;
  queries?: { [name: string]: string };
}

Here are the overloads I'd use. 这是我要使用的重载。 One non-generic call signature which only accepts an az of "text" , and the other is generic in R and only accepts an az of "json" or undefined /missing. 一个非通用的呼叫签名仅接受az"text" ,而另一个在R是通用的,并且仅接受az"json"undefined / missing。 The implementation signature can involve R | string 实现签名可以涉及R | string R | string or any or whatever you want, since it is invisible from the caller's side. R | string或您想要的any R | string ,因为它在调用方那边是不可见的。

async function createRequest(
  url: URL | string,
  { az, queries, ...parameters }: Params & { az: "text" }
): Promise<string>;
async function createRequest<R>(
  url: URL | string,
  { az, queries, ...parameters }: Params & { az?: "json" }
): Promise<R>;
async function createRequest<R>(
  url: URL | string,
  { az, queries, ...parameters }: Params
): Promise<R | string> {
  if (isString(url)) {
    url = new URL(url);
  }

  if (queries) {
    for (const name in queries) {
      url.searchParams.set(name, queries[name]);
    }
  }

  const response = await fetch(url.toString(), parameters);

  if (response.ok) {
    switch (az) {
      case "json":
        return response.json();
      case "text":
        return response.text(); // <- okay now
      default:
        return response.json();
    }
  }

  throw new Error("!");
}

And here's how we'd use it to get text: 这是我们使用它来获取文本的方式:

const promiseString = createRequest("str", { az: "text" }); // Promise<string>

And here's how we'd use it to get some other type (which requires that the caller specify R because it can't be inferred): 这是我们使用它来获取其他类型的方法(这要求调用者指定R因为无法推断出它):

interface Dog {
  name: string;
  age: number;
  breed: string;
  fleas: boolean;
}

const promiseDog = createRequest<Dog>("dog", {}); // Promise<Dog>

And note that you can't ask for "text" if you've specified R : 并请注意,如果您已指定R ,则不能要求输入"text"

const notGeneric = createRequest<Dog>("dog", {az: "text"}); // error!
//                                     -----> ~~
// "text" is not assignable to "json" or undefined

Okay, I hope this helps you. 好的,希望对您有所帮助。 Good luck! 祝好运!

Link to code 链接到代码

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM