일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 계산맞추기 게임
- 리액트
- props
- 인프런
- Python
- 타자 게임 만들기
- 모던자바스크립트
- Do it 자바스크립트 + 제이쿼리 입문
- 거북이 대포 게임
- 웹 게임을 만들며 배우는 리액트
- 모두의 파이썬
- DB Browser
- 노드에 리액트 추가하기
- googleColaboratory
- 자바스크립트
- vs code 내 node
- Colaboratory 글자 깨짐
- JS 개념
- spring-boot
- Concurrently
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- 따라하며 배우는 노드 리액트 기본 강의
- node.js로 로그인하기
- Spring-Framework
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- node.js 설치
- intellij
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- react오류
- react
- Today
- Total
프로그래밍 삽질 중
front부분(axios 있는 것) index.html 파일 내 js를 ts로 변환(진행중) 본문
* 목표
- 이전에 배포했던 영단어 version 2(자바스크립트(js))를 타입스크립트로(ts) 변환하는 것이 목적
* 첫 번째
▶ interface 사용
문제점 : 대다수 함수에 사용된 매개변수(english, korean, type, status(간간히))가 모두 string 값이나 interface로 사용 시 js로 변환하면 사라짐
▶ 제네릭을 이용해보자 생각함
▶ ts에서 이벤트 사용하기
문제점1 : js 내 document.querySelector는 ts에서 인식되지 않음
▶ 해결책 3: https://www.typescripttutorial.net/typescript-tutorial/type-casting/
문제점2 : js 내 event.target.dataset.type을 ts에서 인식하게 하고 싶으면?
▶ 해결책 1 : https://stackoverflow.com/questions/40676343/typescript-input-onchange-event-target-value
▶ 해결책 2 : https://stackoverflow.com/questions/49631688/property-dataset-does-not-exist-on-type-eventtarget
* 문제점 : 'string | undefined' 형식의 인수는 'string' 형식의 매개 변수에 할당될 수 없습니다. 'undefined' 형식은 'string' 형식에 할당할 수 없습니다.
* 문제점 :
TypeScript : Uncaught ReferenceError: exports is not defined
https://dev-minju.tistory.com/143
index:1 Uncaught TypeError: Failed to resolve module specifier "axios". Relative references must start with either "/", "./", or "../".
'axios' 모듈을 찾을 수 없습니다. 'moduleResolution' 옵션을 'node'로 설정하거나 'paths' 옵션에 별칭을 추가하려고 하셨습니까?
▶ 현재 여기서 계속 막히는 중
'과거 프로그래밍 자료들 > 프로젝트' 카테고리의 다른 글
카카오톡 로그인이 안 되는 경우(오류코드:KOE001) (0) | 2022.10.06 |
---|---|
[세팅] typescript 파일 연결(html에서 확인하기) (1) | 2022.09.21 |
[영어단어장 version2.0] 단어장 기능 및 로그인 보완, sns 기능 추가(pm2 stopped) (2) | 2022.09.08 |
ubuntu git 관련 오류 (0) | 2022.09.08 |
form내 action 경로가 실행되기 전 onSubmit 사용하기 (1) | 2022.09.07 |