목록자바스크립트/eslint랑 화해하기 (3)
시작하는 중
const [stepContentRef, setStepContentRef] = useState([useRef(null)]); const [stepImgFileRef, setStepImgFileRef] = useState([useRef(null)]); const addStepBtnHandler = () => { const lastIdx = orderArr.length + 1; setStepContentRef((prev) => { const newRefs = [...prev]; newRefs.push(useRef(null)); return newRefs; }); setStepImgFileRef((prev) => { const newRefs = [...prev]; newRefs.push(useRef(null)..
에러가 난 부분 .. 1 2 3 4 Visible, non-interactive elements with click handlers must have at least one keyboard listener. 해석하면, 클릭 핸들러가 있는 비대화형 요소에는 키보드 리스너가 하나 이상 있어야 합니다. https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/93f78856655696a55309440593e0948c6fb96134/docs/rules/click-events-have-key-events.md GitHub - jsx-eslint/eslint-plugin-jsx-a11y: Static AST checker for a11y rules on JSX elem..
for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array. 왜 화낼까? 에러 메시지를 읽어보면... for..in 루프는 전체 프로토타입 체인을 반복하는데 이건 너가 원하는 것이 아닐 것이다. Object.{keys,values,entries}를 사용하고 배열을 반복하라. 즉 for .. in을 쓰면 프로토타입까지 반복한다는 것이다. const arr = [1, 2, 3, 4, 5]; let result = ""; for (const element in arr) { r..