학습 일부 TypeScript. 코드 작업이 비트 만들려고 노력 :이 오류를 얻기가변 범위를 조작하는 방법?
...
ocrText: string;
...
foo() {
Tesseract.recognize(<Tesseract.ImageLike>document.getElementById('image'))
.then(function(result) {
console.log(result);
this.ocrText = result.text;
});
}
: Uncaught TypeError: Cannot set property 'ocrText' of undefined
콘솔 로그 개체 속성 및 값을 보여 않습니다를.
'텍스트'속성의 로컬 값을 '결과'개체에서 전역 범위로 추출하는 방법은 무엇입니까?
이 태그는 TypeScript와 아무런 관련이 없습니다. –