줌 클론 코딩 강의를 다 보고 채팅 구현 시작... 잠온다... 일단 시작은 했는데 모르겠다^ㅇ^ const connect = () => { client.current = new StompJs.Client({ webSocketFactory: () => new SockJs(`${process.env.REACT_APP_API_URL}/ws-stomp`), // proxy를 통한 접속 connectHeaders: { // Authorization: new Cookies().get('access_token'), // 'Refresh-Token': new Cookies().get('refresh_token'), }, debug(str) { console.log(str); }, onConnect: () => { s..
export const searchRoom = createAsyncThunk( 'room/searchRoom', async (keyword, thunkAPI) => { console.log('keyword', keyword); try { const response = await instance.get(`/rooms/search?keyword=${keyword}`); console.log('search room', response); return thunkAPI.fulfillWithValue(response.data); } catch (error) { console.log('search room error', error); return thunkAPI.rejectWithValue(error); } }, )..
아팠음 중복검사 에러와 싸움
https://stackoverflow.com/questions/59487046/why-i-still-have-warning-expected-to-return-a-value-at-the-end-of-async-arrow-f why I still have warning: Expected to return a value at the end of async arrow function in cloud function, even though I have re I am new in NodeJS and Firebase cloud function, here is my code in my firebase cloud function: exports.dbModeratorsOnCreate = functions.firestor..
https://nomadcoders.co/noom/lectures/3088 All Courses – 노마드 코더 Nomad Coders 초급부터 고급까지! 니꼬쌤과 함께 풀스택으로 성장하세요! nomadcoders.co stopPropagation() https://pa-pico.tistory.com/20 [개념잡기] e.preventDefault() 와 stopPropagation() 의 차이 stopPropogation vs preventDefault e.preventDefault()와 e.stopPropagation()의 차이 두개의 코드 모두 이벤트 관련 동작에서 많이 사용되는 코드이다. 둘의 차이점은 무엇일까 알아보자. e.preventDefault() html 에서 a pa-pico.tisto..
정신없이 시간이 흘렀고 벌써 실전 프로젝트가 시작됐다. 그동안 바쁘다는 핑계로 찾아본 링크들과 메모들 저장만 해놓고 쓰러져 잠들었는데 이제 다시 TIL을 열심히 써야겠다. 미니 프로젝트부터 클론코딩까지의 글들도 하나씩 정리해서 올려야겠다. 오전 기획 회의 그동안 게시판 형식의 프로젝트를 진행해서 이번에는 재밌는 게임을 해보고 싶다는 의견이 많았다. 나도 게임이 평소 관심 있었던 도메인이라 도전해보고 싶었다. 사실 문화콘텐츠와 관련된 도메인들은 다 관심이 많다. 그래서 1안으로 게임 2안으로 게임 외 아이디어로 좁혀보자는 의견을 제시했고 '영양제 성분 분석 사이트' (마치 화장품 분석 사이트 화해가 인기를 끌었던 것처럼) 특색 있는 커뮤니티를 만들자는 쪽으로 의견이 좁혀졌다. 게임..