>  기사  >  웹 프론트엔드  >  React.js의 소품

React.js의 소품

php中世界最好的语言
php中世界最好的语言원래의
2018-03-13 14:51:271777검색

이번에는 React.js의 props를 가져왔습니다. React.js의 props를 사용할 때 주의할 점은 무엇인가요?
상위 구성 요소는 하위 구성 요소에 값을 전달합니다.

<Son userid={123}/>

Son 구성 요소는 상위 구성 요소가 전달한 값을 받습니다.

<p>接收到的父页面的属性 -- userid: {this.props.userid} username:{this.props.username}</p>

물론 Son 페이지에서 전달된 매개 변수의 유형과 기본값을 설정할 수도 있습니다.

// 给属性设置类型BodyIndex.propTypes = {    // isRequired 必须的参数
    userid: React.PropTypes.number.isRequired,
    username: React.PropTypes.string
}// 设置默认值BodyIndex.defaultProps = {
    username: &#39;哈哈&#39;}

유형 설정에 대한 자세한 내용은 공식 문서를 참조하세요.

MyComponent.propTypes = { // You can declare that a prop is a specific JS primitive. By default, these
 // are all optional.
 optionalArray: PropTypes.array, optionalBool: PropTypes.bool, optionalFunc: PropTypes.func, optionalNumber: PropTypes.number, optionalObject: PropTypes.object, optionalString: PropTypes.string, optionalSymbol: PropTypes.symbol, // Anything that can be rendered: numbers, strings, elements or an   array// (or fragment) containing these types.optionalNode: PropTypes.node,// A React element.optionalElement: PropTypes.element, // You can also declare that a prop is an instance of a class. This uses
  // JS&#39;s instanceof operator.
  optionalMessage: PropTypes.instanceOf(Message),  // You can ensure that your prop is limited to specific values by treating
  // it as an enum.
  optionalEnum: PropTypes.oneOf([&#39;News&#39;, &#39;Photos&#39;]),  // An object that could be one of many types
  optionalUnion: PropTypes.oneOfType([
    PropTypes.string,
    PropTypes.number,
    PropTypes.instanceOf(Message)
  ]),  // An array of a certain type
  optionalArrayOf: PropTypes.arrayOf(PropTypes.number),  // An object with property values of a certain type
  optionalObjectOf: PropTypes.objectOf(PropTypes.number),  // An object taking on a particular shape
  optionalObjectWithShape: PropTypes.shape({    color: PropTypes.string,    fontSize: PropTypes.number
  }),  // You can chain any of the above with `isRequired` to make sure a warning
  // is shown if the prop isn&#39;t provided.
  requiredFunc: PropTypes.func.isRequired,  // A value of any data type
  requiredAny: PropTypes.any.isRequired,  // You can also specify a custom validator. It should return an Error
  // object if the validation fails. Don&#39;t `console.warn` or throw, as this
  // won&#39;t work inside `oneOfType`.
  customProp: function(props, propName, componentName) {    if (!/matchme/.test(props[propName])) {      return new Error(        &#39;Invalid prop `&#39; + propName + &#39;` supplied to&#39; +        &#39; `&#39; + componentName + &#39;`. Validation failed.&#39;
      );
    }
  },  // You can also supply a custom validator to `arrayOf` and     `objectOf`.
  // It should return an Error object if the validation fails. The validator
  // will be called for each key in the array or object. The first two
  // arguments of the validator are the array or object itself, and the
  // current item&#39;s key.
  customArrayProp: PropTypes.arrayOf(function(propValue, key,       componentName, location, propFullName) {    if (!/matchme/.test(propValue[key])) {      return new Error(        &#39;Invalid prop `&#39; + propFullName + &#39;` supplied to&#39; +        &#39; `&#39; + componentName + &#39;`. Validation failed.&#39;
      );
    }
  })
 };

Son 컴포넌트는 상위 컴포넌트에서 손자 컴포넌트로 전달된 속성을 전달합니다.

연산자
를 확장하여{...this.props} , 상위 구성 요소에서 전달된 모든 속성은 자체 하위 구성 요소(Sunchild 구성 요소)에 전달됩니다.id={1234}는 Son 구성 요소가 손자 구성 요소에 전달한 속성입니다.

<GrandSon {...this.props} id={1234}/>

손자 구성 요소는 Sunchild 구성 요소에서 전달된 속성을 호출합니다. 아들 컴포넌트

<p>{this.props.userid} {this.props.username} {this.props.id}</p>

refs: 컴포넌트의 내부 DOM 노드에 액세스하는 신뢰할 수 있는 유일한 방법입니다


태그에 참조를 추가하세요

<input ref=&#39;submitButton&#39; type="button" value=&#39;提交&#39; onClick={() => this.changeUserInfo(99)}/>

돔을 얻으려면 this.refs.xxx

를 통해 얻으세요.

this.refs.submitButton.style.color = &#39;red&#39;;

참고:

렌더링 또는 렌더링 전에 Refs를 호출하지 마세요.

Refs를 남용하지 마세요, 사용하지 마세요!!!

이 방법을 읽으신 후 마스터하셨다고 생각합니다. 이 기사의 경우에 대한 더 흥미로운 정보를 보려면 PHP 중국어 웹사이트의 다른 관련 기사를 주목하세요!

추천 자료:

Vue.js의 라우팅 매개변수

Vue.js의 사용자 정의 지시문

Vue.js에서 js 구현으로 전환


위 내용은 React.js의 소품의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.