런타임에 유형을 알 수 없으므로 알 수없는 객체를 유형이 아니라 알려진 유형의 객체와 비교하기 위해 다음과 같이 코드를 작성했습니다.
- 올바른 유형의 샘플 객체 생성
- 해당 요소 중 어느 것이 선택적인지 지정
- 이 샘플 객체와 알 수없는 객체를 심도있게 비교하십시오.
자세한 비교에 사용하는 (인터페이스에 구애받지 않는) 코드는 다음과 같습니다.
function assertTypeT<T>(loaded: any, wanted: T, optional?: Set<string>): T {
// this is called recursively to compare each element
function assertType(found: any, wanted: any, keyNames?: string): void {
if (typeof wanted !== typeof found) {
throw new Error(`assertType expected ${typeof wanted} but found ${typeof found}`);
}
switch (typeof wanted) {
case "boolean":
case "number":
case "string":
return; // primitive value type -- done checking
case "object":
break; // more to check
case "undefined":
case "symbol":
case "function":
default:
throw new Error(`assertType does not support ${typeof wanted}`);
}
if (Array.isArray(wanted)) {
if (!Array.isArray(found)) {
throw new Error(`assertType expected an array but found ${found}`);
}
if (wanted.length === 1) {
// assume we want a homogenous array with all elements the same type
for (const element of found) {
assertType(element, wanted[0]);
}
} else {
// assume we want a tuple
if (found.length !== wanted.length) {
throw new Error(
`assertType expected tuple length ${wanted.length} found ${found.length}`);
}
for (let i = 0; i < wanted.length; ++i) {
assertType(found[i], wanted[i]);
}
}
return;
}
for (const key in wanted) {
const expectedKey = keyNames ? keyNames + "." + key : key;
if (typeof found[key] === 'undefined') {
if (!optional || !optional.has(expectedKey)) {
throw new Error(`assertType expected key ${expectedKey}`);
}
} else {
assertType(found[key], wanted[key], expectedKey);
}
}
}
assertType(loaded, wanted);
return loaded as T;
}
아래는 내가 그것을 사용하는 방법의 예입니다.
이 예제에서 JSON에는 튜플 배열이 포함되어 있으며 두 번째 요소는 User
두 개의 선택적 요소가 있는 인터페이스의 인스턴스입니다 .
TypeScript의 유형 검사는 샘플 객체가 올바른지 확인한 다음 assertTypeT 함수는 알 수없는 (JSON에서로드 된) 객체가 샘플 객체와 일치하는지 확인합니다.
export function loadUsers(): Map<number, User> {
const found = require("./users.json");
const sample: [number, User] = [
49942,
{
"name": "ChrisW",
"email": "example@example.com",
"gravatarHash": "75bfdecf63c3495489123fe9c0b833e1",
"profile": {
"location": "Normandy",
"aboutMe": "I wrote this!\n\nFurther details are to be supplied ..."
},
"favourites": []
}
];
const optional: Set<string> = new Set<string>(["profile.aboutMe", "profile.location"]);
const loaded: [number, User][] = assertTypeT(found, [sample], optional);
return new Map<number, User>(loaded);
}
사용자 정의 유형 가드 구현에서 이와 같은 검사를 호출 할 수 있습니다.