소개
게시글
질문&답변
2021.02.14
자기 자신의 게시글을 리트윗 했을 시 에러가 html로 나옵니다.
오... 에러 메세지를 잘 봐야겠네요 ㅠㅠ 감사합니다!!!!!!!!!!!!!
- 0
- 2
- 220
질문&답변
2021.02.12
saga로 데이터를 넘겨주는거에 대해 질문 있습니다.
아아 감사합니다!!!!!!!!!!!!!!!! 에러가 발생했던건 다른 에러였나 보네요
- 0
- 2
- 248
질문&답변
2021.02.11
401 (Unauthorized) 오류가 나옵니다
안녕하세요, 저도 같은 에러가 발생했고 요청 데이터를 json으로 안보내고있는것도 같은데.. 제로초님 코드 전부 복사했음에도 같은 에러가 발생하고있습니다ㅠㅠㅠ 어디를 어떻게 수정해야되나요...
- 0
- 5
- 1.4K
질문&답변
2021.01.26
안녕하세요! 에러발생위치에 대해 궁금한게 있습니다.
const React = require('react') const {useState, useEffect, useReducer, useCallback} = React const Table = require('./Table') const initalState = { winner: '', turn: 'o', tableData: [['','',''], ['','',''], ['','','']] } module.exports = SET_WINNER = 'SET_WINNER' module.exports = CLICK_CELL = 'CLICK_CELL' module.exports = CHANGE_TURN = 'CHANGE_TURN' const reducer = (state, action) => { switch (action.type) { case SET_WINNER : return { ...state, winner: action.winner } case CLICK_CELL: { const tableData = [...state.tableData] tableData[action.row = [...tableData[action.row]]] tableData[action.row][action.cell] = state.turn return { ...state, tableData } } case CHANGE_TURN: { return { ...state, turn: state.turn === 'O' ? 'X' : 'O' } } } } const TicTacToc = () => { const [state, dispatch] = useReducer(reducer, initalState) // const [winner, setWinner] = useState('') // const [turn, setTurn] = useState('') // const [tabledata, settableData] = useState([['','',''],['','',''],['','','']]) const onClickTable = useCallback(() => { dispatch({ type: SET_WINNER, winner: 'O'}) }, []) return ( Table onClick={onClickTable} tableData={state.tableData} dispatch={dispatch}/> {state.winner && div>{state.winner} 님의 승리div>} ) } module.exports = TicTacToc 곰곰히 보니깐 하단의 return 부분을 말하는거같은데.. table, tr, td컴포넌트로 tableData를 보내는데는 문제가 전혀 없었습니다. 왜 정의가 안되어있다고 나오는지 도저히 모르겠습니다..
- 0
- 1
- 225
질문&답변
2021.01.24
const에 대해 질문이 있습니다!
아 그렇군요 ㅠㅠㅠㅠ 감사합니다 열심히 공부해야겠네요!!
- 0
- 4
- 229