What are refs in react

王林
Release: 2020-11-30 14:39:00
Original
2679 people have browsed it

refs in react is a special attribute supported by react. This special attribute allows us to refer to the corresponding support instance returned by render(). This way we can ensure we always get the correct instance at any time.

What are refs in react

The operating environment of this tutorial: windows10 system, react16 version. This method is suitable for all brands of computers.

(Learning video sharing:react tutorial)

Attribute introduction:

React supports a very special attribute Ref, which you can use to bind Targeted to any component output by render().

This special property allows you to reference the corresponding backing instance returned by render(). This ensures that you always get the correct instance at any time.

Usage:

Bind a ref attribute to the return value of render:

Copy after login

In other code, obtain the support instance through this.refs:

var input = this.refs.myInput; var inputValue = input.value; var inputRect = input.getBoundingClientRect();
Copy after login

Example:

Use this to get the current React component, or use ref to get the component reference, as follows:

class MyComponent extends React.Component { handleClick() { // 使用原生的 DOM API 获取焦点 this.refs.myInput.focus(); } render() { // 当组件插入到 DOM 后,ref 属性添加一个组件的引用于到 this.refs return ( 
); }} ReactDOM.render( , document.getElementById('example'));
Copy after login

In the example, we get the input box The reference of the supporting instance, the input box gets the focus after the child clicks the button.

For more programming related knowledge, please visit:Programming Video! !

The above is the detailed content of What are refs in react. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!