Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- c# datagridview 데이터 넣기
- invalid data
- setInterval 중지
- DataGridView 직접 입력
- mosquitto.conf
- setInterval 외부 정지
- pm2 시작
- mosquitto
- allow_anonymouse
- 서버동기화
- pm2
- Replication
- datagridview 직접입력
- pm2 확인
- mySQL_Replication
- map이 undefined가 뜰 때
- setInterval clear
- DatePicker
- 1883
- AntDesign
- listener 1883
- setInterval 정지
- timepicker
- pm2 상태 확인
- html #select #option #multiple
- 공인IP
- 데이터테이블 데이터 넣기
- pm2 설치
- 맥 어드레스
- transfer
Archives
- Today
- Total
개발 노트
react 하위 컴포넌트에서 상위 컴포넌트로 값 전달하는 법 본문
거쳐야 하는 단계가 적다면 상위 컴포넌트에서 하위 컴포넌트로 콜백함수를 props로 전달하고 하위 컴포넌트에서 해당 콜백함수를 호출해서 props로 전달할 수 있다.
// 부모 컴포넌트
import React, { useState } from 'react';
import ChildComponent from './ChildComponent';
function ParentComponent() {
const [valueFromChild, setValueFromChild] = useState('');
const handleValueChange = (newValue) => {
setValueFromChild(newValue);
};
return (
<div>
<ChildComponent onValueChange={handleValueChange} />
<p>Value from child: {valueFromChild}</p>
</div>
);
}
// 자식 컴포넌트
import React, { useState } from 'react';
function ChildComponent({ onValueChange }) {
const [inputValue, setInputValue] = useState('');
const handleChange = (event) => {
const newValue = event.target.value;
setInputValue(newValue);
onValueChange(newValue); // 부모 컴포넌트의 함수 호출하여 값을 전달
};
return (
<input
type="text"
value={inputValue}
onChange={handleChange}
/>
);
}
'React' 카테고리의 다른 글
비구조화 할당 문법으로 props 추출 (0) | 2023.08.26 |
---|---|
props - default, children (0) | 2023.08.26 |
Ant Design - Modal (0) | 2023.08.18 |
카카오 지도 API - 버튼 눌러 마커 변경 (0) | 2023.08.14 |
카카오 지도 API - 여러개 마커 표시 (0) | 2023.08.14 |