본문 바로가기

오류74

[Vue] Component name "" should always be multi-word vue/multi-word-component-names 에러내용) eslint.vuejs 공식문서 vue/multi-word-component-names | eslint-plugin-vue eslint.vuejs.org 원인) Vue에서 컴포넌트의 이름은 ESLint를 사용할 때 html태그와 헷갈리지 않도록 강제적으로 2단어 이상인 단어의 조합으로 만들어야 한다고 한다. 방법1) 오류 그대로 Cart.vue -> VueCart.vue 두 단어 조합으로 수정한다. 방법2) package.json 파일의 eslintConfig에 옵션추가. "rules": { "vue/multi-word-component-names" : 0 } + vue3 추가 방법3) - .eslintrc.cjs 수정 아래 rule을 추가해준다. 'vue/multi-word-component.. 2023. 5. 15.
warning: LF will be replaced by CRLF in dddd.txt.The file will have its original line endings in your working directory - gitbash에서 git add . 명령어 입력 시 발생하는 에러메세지 LF(Line-Feed) : 커서 위치는 그대로 두고 종이의 한라인 위로 올리는 동작 Mac, Linux (Unix 계열) 줄바꿈 문자열 = \n CR(Carriage-Return) : Mac 초기 모델 줄바꿈 문자열 = \r 커서 위치를 맨앞으로 옮기는 동작 커서 위치를 앞으로 이동 CRLF (Carriage-Return+Line-Feed) : CR(\r) + LR(\n) 두 동작을 합쳐서 (\r\n) 커서를 다음라인 맨앞으로 옮겨주는 동작 플랫폼(OS)마다 줄바꿈을 바라보는 문자열이 다르기 때문에 형상관리를 해주는 Git이 바라볼 땐 둘 중 어느 쪽을 선택할지 몰라 경고 메세지를 띄워준 것. 해결 : autocrlf 사용 기본.. 2023. 5. 9.
java.sql.SQLRecoverableException: IO 오류: The Network Adapter could not establish the connection 정상 작동되던 프로젝트 실행 시 오류 발생 방법 : OracleXE, OracleXETNSListener 확인 window+R > services.msc 혹은 시작 검색 - 서비스 입력 OracleXE와 Listener 가 정상 실행 중인지 확인 실행중이 아니면 작동 설정 해주면 된다 2023. 5. 9.
ConcurrentModificationException : null JPA - MariaDB 세팅 중 발생 보통 리스트 순회 (for loop, iterator)를 이용하여 삭제, 추가 할 때 발생한다는데 왜 버전차이로 나는지 모르겠음 https://www.inflearn.com/questions/804776/db-%EC%97%B0%EB%8F%99-%EB%B6%80%EB%B6%84%EC%97%90%EC%84%9C-%EC%97%90%EB%9F%AC%EA%B0%80-%EB%B0%9C%EC%83%9D%ED%95%A9%EB%8B%88%EB%8B%A4 수정 전) 수정 후) 2023. 5. 8.
axios post 에 params 데이터 보내기 GET은 params에 담아서 보내면 그대로 읽어오지만 post로 보내니까 값을 못받아온다. get : getDetail(row){ const params = { bno : row.bno } axios .post('/getDetail', params) .then((response) => { if(response.data){ this.boardDetail = response.data; } }) .catch(function(error){ console.log(error); }) } post : 400 ) Required requst parameter 'bno' for method parameter type int is not present npm install url-search-params-polyfill.. 2023. 4. 28.
vue cli 설치오류 Window 실행정책으로 인한 오류 -> windowPowerShell 관리자 권한으로 실행. : default Restricted Get-ExecutionPolicy : RemoteSigned Set-ExecutionPolicy RemoteSigned 2023. 4. 20.