일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Vue
- webpack
- ES6
- nodejs
- MySQL
- storybook
- JavaScript
- 댓글달기
- Wecode
- react
- 자바스크립트
- vuex
- 자료구조
- jsx
- event
- mapGetters
- Vue.js
- App.vue
- CSS
- HOC
- scss
- State
- v-html
- input
- express
- 리액트
- TypeScript
- sass
- Vue transition
- 쉬운설명
- Today
- Total
목록코딩일기/에러 일지 (9)
익명의 개발노트
몽고디비 실행시 네트워크 쪽에 permission denied 발생시 조치방법은 아래와 같이 mongodb-27017.sock 파일 삭제 후 sudo rm -rf /tmp/mongodb-27017.sock 서비스 실행해주면 해결된다. brew services start mongodb-community@4.2
1. 원인 : 라우터 get 요청하는 부분의 콜백 함수가 잘못되서 나타난 것. 2. 해결책 : 라우터 안 get 방식으로 요청한 부분의 콜백이 잘못들어 가있는지 확인해 볼 것. pageRouter부터 살펴보면.. 오타가 들어가 있음을 확인했다. isNotLoggedIn으로 들어가야하는데, isNotLoggIn으로.. 수정해주면 끝.
vuex를 모듈화하여 사용하고자 가독성을 높이려고 vue-module-decorator 를 설치하였다. ssr에서는 어떨지 모르겠지만, 일반적인 spa에서 발생한 문제를 남긴다. npm 다운로드 숫자는 2만 5천회 정도. 안된다.. 아래와 같은 에러가 발생... Error: ERR_ACTION_ACCESS_UNDEFINED: Are you trying to access this.someMutation() or this.someGetter inside an @Action? That works only in dynamic modules. 구글링 해본결과 동일한 문제를 겪는 사람들이 많았다. 그리고 해당 라이브러리 깃헙 이슈에도 이미 19년 7월 30일에 등록된 이슈가 있었다. 깃헙 : https://gith..
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' mysql.server start 로 해결할 수 있다.
TypeError: Cannot assign to read only property 'exports' of object '#' 위와 같은 에러는 프론트단에서 사용하는 ECMA 방식과 노드에서 사용하는 Common js형식이 섞에서 컴이 혼란스러워서 나오는 에러이다. 따라서 프론트단은 import 000 from 000, export default 를 사용하며, (ECMA) 백단은 const 000 require('000'), module.export = 방식을 사용하면 해결된다.(Common JS) * Commonjs, ECMA 형식을 섞어서 사용금지.
Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client at ServerResponse.setHeader (_http_outgoing.js:470:11) The error "Error: Can't set headers after they are sent." means that you're already in the Body or Finished state, but some function tried to set a header or statusCode. When you see this error, try to look for anything that tries to send a header after some ..
Error: ER_TRUNCATED_WRONG_VALUE_FOR_FIELD: Incorrect string value: '\xEC\x9D\xB4\xEA\xB1\xB4...' for column 'user_profile' at row 1 1. user_profile이라는 컬럼에서 문자열 값이 올바르지 않다는 내용. 2. 원인 : DB 테이블 생성시 속성에 UTF8에 대해서는 주지 않았고, 회원가입 간 프로필 내용을 한글로 적어서 발생함. 3. 해결 : 영어로 바꿔서 해결함, 또는 UTF8 속성을 줘도 됨.
//수정창 모달로 만들기 function modifyComments(event){ const mBtn = event.target; //모달창 만들기 const modal = document.createElement('div') const modalOverlay = document.createElement('div'); const modalContent = document.createElement('div'); const cancleBtn = document.createElement('button'); const okBtn = document.createElement('button'); const input = document.createElement('input'); const span = documen..
방법1. 좋아요, 싫어요 버튼의 이벤트리스너에 리스너를 공통으로 하고 거기서 if else로 나눈 점. function numberCount(event){ console.log("5 투료버튼 누름"); //몇번째가 클릭되는지 인식안되는 듯? if(event.target === voteUp){ voteUpCount++; voteUp.innerHTML = "👍"+voteUpCount; return voteUp.innerHTML; }else if(event.target === voteDown){ voteDownCount++; voteDown.innerHTML = "👎"+voteDownCount; return voteDown.innerHTML; } console.log("6 투료버튼 종료?"); } 위와 같이하..