forked from mmistakes/minimal-mistakes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
layout: single | ||
title: "241007MON TIL" | ||
--- | ||
# [구름-스터디] 스터디 준비하다 경험한 오류들 | ||
|
||
1. 대소문자 오타 | ||
오늘 내가 스터디 준비하는 날인데 준비하다가 리액트로 실행시켰는데 오류가 났다. | ||
그래서 오류 메세지를 대략 읽었더니 해결하기엔 애를 살짝 먹었는데 간단히 해결할 수 있는 문제였다. | ||
LandingPage에서 L을 소문자로 썼던 것이다. 경로에서 l이라고 썼다가 대문자로 바꿨는데 여전했다. | ||
그래서 코드를 살폈더니 코드에서도 l이 많았던 것 같다. 그래서 대거 수정했다. | ||
근데 아마 자동완성으로 쳤던건지 대부분 소문자였는데 경로 작성할 때도 소문자로 썼더라면 | ||
오류 없이 한번에 됐었을까 하는 생각이 든다. | ||
|
||
2. 알람창 오타 | ||
알람창이 떠야하는데 안떠서 왜이러지 싶었는데 한참봐도 안보였다 | ||
그래서 지피티한테 물어보니까 오타가 있다고 했는데 Submit 인데 Sumit으로 오타가 있었다고 한다. | ||
|
||
3. 작은 따옴표와 백틱 | ||
''랑 ``랑 이름이 다르다고한다 | ||
'' 작은 따옴표 | ||
`` 백틱 | ||
이라는 것을 알게되었다. | ||
|
||
alert(`이름: ${name}`); | ||
을 할때 작은 따옴표를 사용하면 | ||
알람창에 ${name}이라고 뜨고 | ||
백틱을 사용하면 정상적으로 입력한 값이 나온다. |