gpt4 book ai didi

typescript - 将数组传递给 typescript 剩余参数

转载 作者:行者123 更新时间:2023-12-05 03:07:58 27 4
gpt4 key购买 nike

有没有办法将参数数组传递给 typescript 剩余参数,改变 Foo 类的实现?

    class Foo{
constructor(...restParam : string[]){}
}

class Test{
CallFoo = () => {
// Working
let foo = new Foo("t", "t");

// Compilation error
let restParamValues = ["t", "t"];
let foo2 = new Foo(restParamValues);
};

错误:“字符串[]”类型的参数不可分配给“字符串”类型的参数。

最佳答案

使用 typescript 扩展运算符:

let foo = new Foo(...restParamValues);

关于typescript - 将数组传递给 typescript 剩余参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46326417/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com