게시글
질문&답변
2024.08.03
프록시 잘 설정했는데도 404 오류 뜨는 분들
포기할뻔..
- 3
- 3
- 240
질문&답변
2024.07.27
그대로 넣으면 map을 찾지 못한다는 오류가 나옵니다
저도 map이 undefined라고 나와서한참 찾았는데, 다른 곳 오타였어요;;notifications:[], //빈 배열 여기에 s 빼놓음;;import React from "react"; import Notification from "./Notification"; const reservedNotifications = [ { message:"안녕, 오늘 일정은", }, { message:"곧 점심식사 시간이야", }, { message:"미팅이 시작된다", }, ] var timer; class NotificationList extends React.Component { constructor(props){ super(props); this.state = { notifications:[], //빈 배열 } } componentDidMount(){ const {notifications} = this.state; timer = setInterval(() => { if(notifications.length {this.state.notifications.map((notification) => { return })} ) } } export default NotificationList;
- 1
- 2
- 314
질문&답변
2024.01.04
코드 오류
self 부분이 빠진거 같아요FlyableAttackUnit.__init__(self, "레이스", 80, 20, 5)FlyableAttackUnit.__init__(self, "레이스", 80, 20, 5)
- 0
- 2
- 274