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 |
Tags
- TypeScript
- angular
- 카카오톡
- https
- AWS
- react
- fanzeel
- 도메인
- node
- php
- cors
- 감사일기
- swift
- beanstalk
- 페이스북
- 웹뷰
- nextjs
- node.js
- NeXT
- S3
- ios
- Android
- 네이티브
- hybrid
- 알려줌
- 안드로이드
- Route53
- angular4
- Elastic Beanstalk
- JavaScript
Archives
- Today
- Total
목록Component (1)
쪼렙 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 ( 여기는 Child 컴포넌트. ); }} class Parent extends Component { constructor(props) { super(props) this.childComponent; } callChildMethod = () => { this.childComponent.blahblah() } render..
개발 일지/Web & Server
2018. 8. 22. 15:51