Typescript承诺所有混合数组和扩展运算符

时间:2018-05-03 03:39:01

标签: typescript promise destructuring spread-syntax

我有一个使用混合数组的承诺,我使用扩展运算符将输出拆分为2个变量,第一个作为IUnpackedFile,其余作为IDescriptionBody []。 我解决它的方法是使用as关键字转换2个变量。代码如下:

    return Promise.all<IUnpackedFile | IDescriptionBody>([
      unpackFromHttp("/data/withTexture/5782622127702409215.dat"),
      ...texturePromises
    ])
  .then(([bufferArray, ...rest]) => {
    // casting here
    const description = (rest as IDescriptionBody[]).reduce(
      (res, val) => {
        res[val.CellId] = val;
        return res;
      },
      {} as IDescription
    );

    const meshMaterials = extractMesh(
      // casting here
      (bufferArray as IUnpackedFile).result,
      description
    );

为什么我不能使用元组输入输出?

then(([bufferArray, ...rest]: [IUnpackedFile , IDescriptionBody[]])

这是我得到的错误:

Argument of type '([bufferArray, ...rest]: [IUnpackedFile, IDescriptionBody[]]) => void' is not assignable to parameter of type '((value: (IDescriptionBody | IUnpackedFile)[]) => void | PromiseLike<void>) | null | undefined'.
  Type '([bufferArray, ...rest]: [IUnpackedFile, IDescriptionBody[]]) => void' is not assignable to type '(value: (IDescriptionBody | IUnpackedFile)[]) => void | PromiseLike<void>'.
    Types of parameters '__0' and 'value' are incompatible.
      Type '(IDescriptionBody | IUnpackedFile)[]' is not assignable to type '[IUnpackedFile, IDescriptionBody[]]'.
        Property '0' is missing in type '(IDescriptionBody | IUnpackedFile)[]'.

编辑: 到目前为止,我发现了这一点:Proposal: Variadic Kinds 基本上这是一项自2015年10月30日以来一直在讨论的提案。

1 个答案:

答案 0 :(得分:0)

  

为什么我不能使用元组输入输出?

因为您无法将数组转换为元组。以下是相同的代码:

declare const foo: number[];
const bar: [number, number] = foo; // Error: property `0` is missing

更多

你实际上不是类型转换。只是分配,这给你的错误与我展示的例子相同。类型断言实际修复它:

declare const foo: number[];
const bar: [number, number] = foo as [number, number]; // OK