라우팅 관련 문제
·
ErrorCode
비주얼 코드 Extention에서 제공하는 LiveServer에서는 웹사이트가 제대로 호스팅 되었으나 nodejs express에서는 html 파일이 app.js파일의 경로를 적어줬음에도 불구하고 찾지 못했다. 현재 파일 디렉토리 구조 contents -1- app.js -1- public -2- mainPage -3- mainPage.html 내가 원하는 구조는 app.js 파일이 public에 분리해둔 각각의 폴더의 html 파일들을 가져와 웹사이트에 뿌려주는 것인데 express 모듈을 사용하자 상위 디렉토리 접근이 불가능하여 오류가 있어서 변경을 기다리는 중 프로젝트 루트package.json 파일이 있는 위치..
TypeError
·
ErrorCode
script.js:16 Uncaught TypeError: colorsBtn.addEventListener is not a function at script.js:16:15 at Array.forEach () at script.js:14:8 const redBtn = document.querySelector("#red-btn");const greenBtn = document.querySelector("#green-btn")const blueBtn = document.querySelector("#blue-btn")const resetBtn = document.querySelector("#reset-btn")const backgroundColor = document.querySelector(..