반응형

TypeScript 3

기본 클래스의 멤버에 액세스하는 중

기본 클래스의 멤버에 액세스하는 중 TypeScript 사이트의 놀이터에서 상속 예를 참조하십시오. class Animal { public name; constructor(name) { this.name = name; } move(meters) { alert(this.name + " moved " + meters + "m."); } } class Snake extends Animal { constructor(name) { super(name); } move() { alert("Slithering..."); super.move(5); } } class Horse extends Animal { constructor(name) { super(name); } move() { alert(super.name + "..

source 2023.03.05

컴포넌트 클래스의 템플릿 참조 변수에 액세스합니다.

컴포넌트 클래스의 템플릿 참조 변수에 액세스합니다. 컴포넌트 클래스에서 템플릿액세스 변수에 액세스 할 수 있습니까? 즉, 여기서 접속할 수 있나요? class XComponent{ somefunction(){ //Can I access #ipt here? } } 그것은 의 사용 사례입니다.@ViewChild: https://angular.io/docs/ts/latest/api/core/index/ViewChild-decorator.html class XComponent { @ViewChild('ipt', { static: true }) input: ElementRef; ngAfterViewInit() { // this.input is NOW valid !! } somefunction() { this.in..

source 2023.03.05

TypeScript에서 "as const"는 무엇을 의미하며 그 사용 사례는 무엇입니까?

TypeScript에서 "as const"는 무엇을 의미하며 그 사용 사례는 무엇입니까? 는 이 일이 헷갈린다.as const몇 가지 자료와 동영상을 확인했지만 완전히 이해하지 못했습니다. 내 관심사는 그 사람들이as const아래 코드의 의미와 그 사용의 이점은 무엇입니까? const args = [8, 5] as const; const angle = Math.atan2(...args); console.log(angle); 이것은 어설션이라고 알려져 있다.aconstassertion은 컴파일러에게 표현식에 대해 가능한 한 좁거나* 가장 구체적인 유형을 추론하도록 지시합니다.이 옵션을 끄면 컴파일러는 기본 유형 추론 동작을 사용합니다.이 동작으로 인해 더 넓어지거나 더 일반적인 유형이 될 수 있습니다. ..

source 2023.02.23
반응형