From ec3241e12a8b080c7100d2d8dc40d530d610eb34 Mon Sep 17 00:00:00 2001 From: Eunjeong Park Date: Fri, 3 May 2019 19:28:18 +0900 Subject: [PATCH] =?UTF-8?q?Resolve=20reviews=20(translate=20'section'=20->?= =?UTF-8?q?=20'=EC=A0=88')?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- content/docs/faq-state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/faq-state.md b/content/docs/faq-state.md index ef97ab539..ad537ff43 100644 --- a/content/docs/faq-state.md +++ b/content/docs/faq-state.md @@ -88,7 +88,7 @@ handleSomething() { ### 왜 React는 `this.state` 를 동기적으로 업데이트하지 않나요? {#why-doesnt-react-update-thisstate-synchronously} -이전 장에서 설명했듯이 모든 컴포넌트가 자신의 이벤트 핸들러에서 `setState()`를 호출할 때까지 React는 리렌더링을 하지 않고 내부적으로 "기다리고 있습니다". 이를 통해 불필요한 렌더링을 방지하면서 성능을 향상시킵니다. +이전 절에서 설명했듯이 모든 컴포넌트가 자신의 이벤트 핸들러에서 `setState()`를 호출할 때까지 React는 리렌더링을 하지 않고 내부적으로 "기다리고 있습니다". 이를 통해 불필요한 렌더링을 방지하면서 성능을 향상시킵니다. 그러나 왜 React는 리렌더링 대신 즉시 `this.state`를 업데이트하지 않는지 여전히 궁금해 하실 수도 있습니다.