일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 정렬
- Spring
- 파이썬
- memory
- Redux
- 프로그래머스
- 리덕스장바구니
- C++
- OS
- 기초100제
- 스프링
- 공부
- js to ts
- Operating System
- 백준
- 일상
- 코드업
- react-redux
- codeup
- web
- error
- Java
- 토이프로젝트
- CPU 스케줄링
- 분할메모리할당
- 협업
- 타입스크립트
- react
- 알고리즘
- 자료구조
- Today
- Total
목록error (3)
감자튀김 공장🍟
프로젝트를 git에서 clone하고 npm install을 했더니 npm ERR! Cannot read property 'match' of undefined npm ERR! A complete log of this run can be found in: npm ERR! C:\파일 경로-debug.log' 이런 에러가 떠서 npm install, npm upgrade, npm install upgrade도 계속 같은 에러가 났다. 그래서 일단 1. package-lock.json 제거 2. node-modules 제거 3. npm install 실행했다. 나는 node-modules 만들기 전부터 에러가 생긴거여서 1번 -> 3번으로 실행했더니 install이 잘 됐다.
프론트 팀원들끼리 같이 antd 적용하여 UI를 꾸미고 있었는데 어느 정도 꾸미고 실행해보니까 갑자기 Warning: validateDOMNesting(...): cannot appear as a descendant of .라는 에러가 떴다. 먼저 수정 전 코드를 보자 Home.js import React from 'react'; import {Link} from 'react-router-dom'; import {Button} from 'antd-mobile'; import 'antd/dist/antd.css'; import 'antd-mobile/dist/antd-mobile.css'; function Home() { return ( 회원 비회원 ); } export default Home; 오류 메시..
코드를 짜다가 이런 오류가 떴다. 먼저 finalRes를 살펴보자면 finalRes = { "0": { // 객체 배열 index 값 "Id": 1, // Menu DB에 저장되어 있는 제품 Id "Name": "Hot Latte", "Price": 3700, "Quantity": 2, }, "1": { "Id": 14, "Name": "Lemon Ade", "Price": 3800, "Quantity": 5, }, } 이런 식으로 json 객체가 finalRes를 이루고 있다. 배열은 map()으로 출력이 되지만 객체는 map()으로 출력이 되지 않아 TypeError: Cannot convert object to primitive value 라는 오류가 뜬 것이다. 다른 블로그에서는 JSON.stri..