IT/React

React 💬11

금마s 2021. 2. 2. 15:35

🎈 Refs 🎈

 

📌 ref는 element에 reference를 return할 때 쓰인다.

📌 Refs는 대부분의 케이스에서 사용하는 걸 피해야하지만 DOM을 측정하거나 컴포넌트에 method를 추가할때 유용하다.

 

 

🔧 다음의 예제는 refs를 가지고 입력필드를 초기화 하는 방법을 보여준다.

🔧 ClearInput 함수는 ref="myInput" 값을 가진 요소를 찾고, state를 초기화하며 그리고 버튼이 클린 된 후에 집중한다.

 

App.jsx

import React from 'react';
import ReactDOM from 'react-dom';

class App extends React.Component {
   constructor(props) {
      super(props);
		
      this.state = {
         data: ''
      }
      this.updateState = this.updateState.bind(this);
      this.clearInput = this.clearInput.bind(this);
   };
   updateState(e) {
      this.setState({data: e.target.value});
   }
   clearInput() {
      this.setState({data: ''});
      ReactDOM.findDOMNode(this.refs.myInput).focus();
   }
   render() {
      return (
         <div>
            <input value = {this.state.data} onChange = {this.updateState} 
               ref = "myInput"></input>
            <button onClick = {this.clearInput}>CLEAR</button>
            <h4>{this.state.data}</h4>
         </div>
      );
   }
}
export default App;

 

main.js

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App.jsx';

ReactDOM.render(<App/>, document.getElementById('app'));

 

 

💻

 

 

 

 

 

 

 

728x90

'IT > React' 카테고리의 다른 글

React 💬13  (0) 2021.02.02
React 💬12  (0) 2021.02.02
React 💬10  (0) 2021.02.02
React 💬9  (0) 2021.02.02
React 💬8  (0) 2021.02.02