이번에는 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: '哈哈'}
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'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(['News', 'Photos']), // 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'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't `console.warn` or throw, as this // won't work inside `oneOfType`. customProp: function(props, propName, componentName) { if (!/matchme/.test(props[propName])) { return new Error( 'Invalid prop `' + propName + '` supplied to' + ' `' + componentName + '`. Validation failed.' ); } }, // 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's key. customArrayProp: PropTypes.arrayOf(function(propValue, key, componentName, location, propFullName) { if (!/matchme/.test(propValue[key])) { return new Error( 'Invalid prop `' + propFullName + '` supplied to' + ' `' + componentName + '`. Validation failed.' ); } }) };
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='submitButton' type="button" value='提交' onClick={() => this.changeUserInfo(99)}/>돔을 얻으려면 this.refs.xxx
를 통해 얻으세요.
this.refs.submitButton.style.color = 'red';참고:렌더링 또는 렌더링 전에 Refs를 호출하지 마세요.Refs를 남용하지 마세요, 사용하지 마세요!!!이 방법을 읽으신 후 마스터하셨다고 생각합니다. 이 기사의 경우에 대한 더 흥미로운 정보를 보려면 PHP 중국어 웹사이트의 다른 관련 기사를 주목하세요! 추천 자료:
위 내용은 React.js의 소품의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!