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
- react
- JavaScript
- node.js
- nextjs
- angular
- beanstalk
- https
- 카카오톡
- Android
- 웹뷰
- Elastic Beanstalk
- php
- 네이티브
- S3
- 도메인
- hybrid
- ios
- swift
- node
- angular4
- 안드로이드
- 감사일기
- fanzeel
- Route53
- 페이스북
- 알려줌
- cors
- TypeScript
- NeXT
- AWS
Archives
- Today
- Total
쪼렙 as! 풀스택
React - 자식 Component 객체에 접근하기! 본문
import { Component } from 'react';
class Child extends Component {
constructor(props) {
super(props)
if(props.onParentRef) {
props.onParentRef(this);
}
}
blahblah = () => {
console.log("BlahBlah~");
}
render() {
return (
<div>
<h2>여기는 Child 컴포넌트. </h2>
</div>
);
}
}
class Parent extends Component {
constructor(props) {
super(props)
this.childComponent;
}
callChildMethod = () => {
this.childComponent.blahblah()
}
render() {
return (
<div>
<h1>여기는 부모 컴포넌트.</h1>
<Child onParentRef={ref => (this.childComponent = ref)} />
<button onClick={this.callChildMethod}>블라블라</button>
</div>
);
}
}
export default Parent;
'개발 일지 > Web & Server' 카테고리의 다른 글
18.10.05 리액트로 smooth scroll 되는 슬라이더 만들기. (0) | 2018.10.05 |
---|---|
Nexjs 에서 구글 애널리틱스 사용하기. (0) | 2018.09.06 |
Angular - img src = local에 있는 blob 주소를 이용하여 img 태그 보여주기. (0) | 2018.07.30 |
문자열 클립보드에 복사하기. (0) | 2018.07.25 |
Next.js - next/dynamic 이용해서, 특정 컴포넌트 SSR 안하고, 클라이언트에서만 렌더링하기. (0) | 2018.07.18 |
Comments