部分<t>仅适用于内联值

时间:2017-02-20 13:16:17

标签: typescript partial keyof mapped-types

为什么下面的代码表现得像?它是TypeScript编译器中的错误还是缺少的功能?

class MyType {
  constructor(public readonly value1: string, public readonly value2: number) {
  }  
}

function myFunction(props: Partial<MyType>): void {
  // Do something here    
}

myFunction({ }); // Compiles
myFunction({ value1: 'string', value2: 42 }); // Compiles
myFunction({ wrongValue: true }); // Compile error!!

const myValue1 = {};
const myValue2 = { value1: 'string', value2: 42 };
const myValue3 = { wrongValue: true };

myFunction(myValue1); // Compiles
myFunction(myValue2); // Compiles
myFunction(myValue3); // Compiles, but why?!? I expected this not to compile!

我使用的是TypeScript版本2.1.6

1 个答案:

答案 0 :(得分:2)

您要求的是确切类型,跟踪here

目前,TypeScript仅检查对象文字的过多对象键,主要用于拼写错误。将对象绑定到变​​量后,TypeScript将不会检查过多的键。

规格:https://github.com/Microsoft/TypeScript/blob/02547fe664a1b5d1f07ea459f054c34e356d3746/doc/spec.md#3115-excess-properties

部分有效地将可选标记添加到班级的字段中。

因此,它不会报告myValue3的错误。