๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
๋ฐ˜์‘ํ˜•

๋‚ด๊ฐ€ ๋งŒ๋‚œ ERROR11

permission denied sudo chown -R ๋‚ด ๋งฅ๋ถ ๊ณ„์ •: ๊ฒฝ๋กœ 2023. 2. 22.
[github page] Failed to load resource: the server responded with a status of 404 () Swagger๋กœ API ๋ฌธ์„œ๋ฅผ ๋งŒ๋“ค๊ณ  ์žˆ๋Š”๋ฐ github page๋กœ ํ˜ธ์ŠคํŒ…ํ•˜๋ ค๋‹ˆ๊นŒ ์ €๋Ÿฐ ๊ฐœ๊ฐ™์€ ์—๋Ÿฌ๊ฐ€ ๊ณ„์† ๋œฌ๋‹ค. ๋‹ต์€ ์ตœ์ƒ์œ„ ๊ฒฝ๋กœ ํด๋”์— .nojekyll ํŒŒ์ผ์„ ๋งŒ๋“ค์–ด์ฃผ๊ณ  commit์„ ํ•˜์ž github page ์ž์ฒด์—์„œ jekyll theme๋ฅผ ์‚ฌ์šฉํ•˜๊ธฐ ๋•Œ๋ฌธ์ด๋‹ค. (swagger์—์„œ ์‚ฌ์šฉํ•˜๋Š” theme์™€ ์ถฉ๋Œํ•˜๋‚˜๋ด„) 2022. 4. 11.
[Vue] Vue packages version mismatch github repo๋ฅผ clone ํ•ด์„œ ์‹คํ–‰์‹œํ‚ค๋ ค๋Š”๋ฐ ์•„๋ž˜์™€ ๊ฐ™์€ ERROR๊ฐ€ ๋ฐœ์ƒํ•˜์˜€๋‹ค!!! ๐Ÿ‘€ ์ฆ‰, ๋‚˜์˜ vue version์€ 2.6.14 clone ๋ฐ›์€ repo์˜ vue๋Š” 2.6.12 - vue@2.6.14 - vue-template-compiler@2.6.12 ๊ทธ๋ž˜์„œ package.json์—์„œ vue version์„ ํ•˜๋“œ์ฝ”๋”ฉ ํ•˜๊ณ  package-lock.json๊ณผ node_modules๋ฅผ ์ง€์šด ํ›„ ๋‹ค์‹œ npm install์„ ํ•ด์ฃผ์—ˆ๋‹ค. 2021. 11. 25.
[Vue] Error: Avoided redundant navigation to current location. ํ˜„์žฌ ํŽ˜์ด์ง€์—์„œ ๋™์ผํ•œ ํŽ˜์ด์ง€ ๊ฒฝ๋กœ๋กœ ์ด๋™ํ•˜๋ ค๊ณ  ํ•˜๋ฉด ์ƒ๊ธฐ๋Š” ERROR๋‹ค. ๐Ÿ‘‰๐Ÿป ERROR๊ฐ€ ๋ฐœ์ƒํ•œ ์ฝ”๋“œ this.$router.push('/monitoring'); ๐Ÿ‘‰๐Ÿป ์ˆ˜์ •ํ•œ ์ฝ”๋“œ ๋‘˜์ค‘ ํ•˜๋‚˜๋กœ ๋ฐ”๊ฟ”์ฃผ๋ฉด ๋œ๋‹ค. -catch๋กœ ์˜ค๋ฅ˜๋ฅผ ๋ฌด์‹œํ•˜๊ธฐ this.$router.push('/monitoring').catch(()=>{}); -ํ˜„์žฌ ์ฃผ์†Œ์™€ ์ด๋™ํ•  ์ฃผ์†Œ๋ฅผ ๋น„๊ตํ•ด์„œ ์‹คํ–‰ํ•˜๊ธฐ if (this.$route.path !== '/monitoring') { this.$router.push('/monitoring') } 2021. 11. 24.
[Golang] go module error go.mod ํŒŒ์ผ์— ERROR๊ฐ€ ๋‚  ๋•Œ๊ฐ€ ์žˆ๋‹ค. ๊ทธ๋Ÿด๋• Terminal์— ์•„๋ž˜์™€ ๊ฐ™์ด ์ž…๋ ฅํ•˜๋ฉด ๋œ๋‹ค. $ go mod init [module ๊ฒฝ๋กœ] $ go mod tidy 2021. 11. 17.
[React] e.preventDefault(); ๐Ÿช“ ์ˆ˜์ • ์ „ ์ฝ”๋“œ writeComment = e => { this.setState({ comment: e.target.value, }); }; addComment = e => { โญ๏ธ e.preventDefault(); const { commentList, comment } = this.state; this.setState({ commentList: [ ...commentList, { id: commentList.length + 1, userName: 'zzz_yk', content: comment, }, ], comment: '', }); }; enterKey = e => { if (e.key === 'Enter') { this.addComment(); } }; ๊ฒŒ์‹œ ์ด๋ ‡๊ฒŒ ํ•˜๊ณ  ๋Œ“๊ธ€์„ ์“ฐ๊ณ  Enter.. 2021. 11. 16.
๋ฐ˜์‘ํ˜•