본문 바로가기

분류 전체보기143

리액트에서 화살표 함수 사용하기 import React from 'react'; const App = () => { return ( ); }; export default test; javascript 함수표현 function 키워드에 비해 구문이 짧고 this, argument, super, new.targer 을 바인딩 하지 않는다. 익명함수 ( 매개변수 ) => { statement } //매개변수가 없을때 () => { statement } statement의 유일한 문장이 return 이면 return과 { } 를 생략 가능하다. const { input, todos } = useSelector(({ todos }) => ({ input: todos.input, todos: todos.todos, })); { } 안에 반드시 리.. 2020. 9. 19.
'React' must be in scope when using JSX import 부분에서 React 없이 { createContext, useState}만 있었더니 'React' must be in scope when using JSX 에러 발생 2020. 9. 16.
error : Expected an assignment or function call and instead saw an expression no-unused-expressions 대충 이해하자면 사용하지 않은 문법이나 기능을 불렀다고 예상한다는거 같음... 오타거나 문법이 틀렸거나.. 역시 문법이 틀렸었어.... 괄호 종류의 기능들을 아직 모르겠다...ㅋㅋ ㅜㅜㅠㅠ 2020. 9. 3.
Thymeleaf 문자열 조합 Thymeleaf에서 문자열 조합을 하려면.. 먼가 지저분하다. 이럴 때, |로 싸주면 문자열을 조합할 수 있다. 2020. 7. 22.
에러 일기 UPDATE tb_rtcan_reserve SET rtcan_situation= #{rtcanSituation}, reserve_reg_date= NOW(), officer_id= #{officerId} WHERE rtcan_reserve_code = #{rtcanCode} 16:40:30.343 [scheduling-1] ERROR jdbc.sqlonly - com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44) 1. UPDATE tb_rtcan_reserve SET rtcan_situation= '예약취소', reserve_reg_date= NOW(), WHERE rtcan_reserve_code = '.. 2020. 7. 21.
시험 대비-2 Description: Field pointHistory in team1.project.scheduler.CommonScheduler required a bean of type 'team1.project.vo.PointHistory' that could not be found. The injection point has the following annotations: - @org.springframework.beans.factory.annotation.Autowired(required=true) Action: Consider defining a bean of type 'team1.project.vo.PointHistory' in your configuration. 의존성에 관한 에러 Autowired 지.. 2020. 7. 21.
728x90
반응형