function f([a,b,c]) {
// this works but a,b and c are any
}
有可能写这样的东西吗?
function f([a: number,b: number,c: number]) {
// being a, b and c typed as number
}
Answers:
这是用于解构参数列表中的数组的正确语法:
function f([a,b,c]: [number, number, number]) {
}
f([a, b, c]: number[])
是的。在TypeScript中,您可以通过简单的方式使用数组类型来创建元组。
type StringKeyValuePair = [string, string];
您可以通过命名数组来执行所需的操作:
function f(xs: [number, number, number]) {}
但是您不会命名interal参数。另一种可能是按使用对销毁:
function f([a,b,c]: [number, number, number]) {}
我的代码如下
type Node = {
start: string;
end: string;
level: number;
};
const getNodesAndCounts = () => {
const nodes : Node[];
const counts: number[];
// ... code here
return [nodes, counts];
}
const [nodes, counts] = getNodesAndCounts(); // problematic line needed type
类型脚本在TS2349下面的行中给我错误:无法调用类型缺少调用签名的表达式;
nodes.map(x => {
//some mapping;
return x;
);
将行更改为下面可以解决我的问题;
const [nodes, counts] = <Node[], number[]>getNodesAndCounts();
作为一个简单的答案,我想补充一下,您可以执行以下操作:
function f([a,b,c]: number[]) {}