# props
TIP
props 是 React 中很重要的一个概念,使用 props 向 React 组件传递数据,React 组件从 props 中取出数据,然后返回视图
# 验证 props
数据类型验证
- 1.JavaScript 基本数据类型,包括数组,布尔,函数,数字,对象,字符串
React.PropType.array;
React.PropType.bool;
React.PropType.func;
React.PropType.number;
React.PropType.object;
React.PropType.string;
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
- 2.可以被渲染为子节点的对象,包括数组,字符串,ReactElement(指 jsx 闭合标签)或数组
React.PropType.node;
1
- 3.ReactElement
React.PropType.element;
1
- 4.指定类的实例
React.PropType.instanceOf(Message);
1
- 5.只接受指定的值
React.PropType.oneOf(["News","Photos])
1
- 6.多个对象类型中的一个
React.PropType.oneOfType([
React.PropType.string,
React.PropType.number,
React.PropType.instanceOf(Message)
]);
1
2
3
4
5
2
3
4
5
- 7.指定类型组成的数组
React.PropType.arrayOf(React.PropType.number);
1
- 8.指定类型的属性构成的对象
React.PropType.objectOf(React.PropType.number);
1
- 9.符合指定格式的对象
React.PropType.shape(
color:React.PropType.string,
fontSize:React.PropType.number
)
1
2
3
4
2
3
4
- 10.任意类型加上 isRequire 使其不可为空
React.PropType.func.isRequired;
1
- 11.自定义验证器,如果验证失败了需要返回一个 Error 对象.不要直接使用 conosle.error 或抛异常,因为这样的话 oneOfType 会失效
function(props,propName,componentName){
if(!/matchme/.test(props[propName])){
return new Error("Validation failed!")
}
}
1
2
3
4
5
2
3
4
5
# 组合使用 props 和 state
使用 Counter 组件更新 state 的 value,然后将更新的 state.value 通过 props 传递给 Content 组件
import React, { Component } from "react";
import PropTypes from "prop-types";
function Content(props) {
return <p>Content组件的props:value:{props.value}</p>;
}
Content.propTypes = {
value: PropTypes.number.isRequired
};
export default class Counter extends Component {
constructor() {
super();
this.state = { value: 0 };
}
render() {
return (
<div>
<button
onClick={() =>
this.setState({
value: this.state.value + 1
})
}
>
点击
</button>
Counter组件的内部状态:
<pre>{JSON.stringify(this.state, null, 2)}</pre>
<Content value={this.state.value} />
</div>
);
}
}
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
31
32
33
34
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
31
32
33
34
# props 传递数据
MessageList=>Message=>Button
import React from "react";
import PropTypes from "prop-types";
// 按钮
function Button(props) {
return <button style={{ background: props.color }}>{props.children}</button>;
}
Button.propType = {
color: PropTypes.string.isRequired,
children: PropTypes.string.isRequired
};
// 消息
function Message(props) {
return (
<li>
{props.text}
<Button color={props.color}>删除</Button>
</li>
);
}
Message.propType = {
text: PropTypes.string.isRequired,
color: PropTypes.string.isRequired
};
// 列表
function MessageList() {
const color = "red";
const messages = [{ text: "Hello" }, { text: "React" }];
const children = messages.map((message, key) => (
<Message key={key} text={message.text} color={color} />
));
return (
<div>
<p>通过props将color逐层传递给里面的Button组件</p>
<ul>{children}</ul>
</div>
);
}
export default MessageList;
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
31
32
33
34
35
36
37
38
39
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
31
32
33
34
35
36
37
38
39
通过 getChildContext()方法将 color 放在 context 中,并声明了 childContxtTypes,如果不声明 chilContextTypes,将无法在组件中使用 getChildContext()方法
TIP
1.state 内部状态或者局部状态
2.Props 与 context 则用于组件之间传递数据,使用 props 传递数据简单清晰,但是跨级传递非常麻烦,使用 context 可以跨级传递数据,但是降低组件的复用性,因为这些组件依赖上下文,所以近况使用 context 传递登陆的状态,颜色主题等全局数据
# setState
import React, { Component, Fragment } from "react";
import "./style.css";
import XiaojiejieItem from "./XiaojiejieItem";
export default class Xiaojiejie extends Component {
constructor(props) {
super(props);
this.state = {
inputVal: "",
list: ["基础按摩", "精油推背"]
};
}
render() {
return (
<Fragment>
{/* jsx注释 */}
{/* htmlFor和for冲突 */}
<label htmlFor="add">增加服务:</label>
<input
id="add"
value={this.state.inputVal}
onChange={this.inputChange.bind(this)}
className="input"
/>
<button onClick={this.addList.bind(this)}>增加服务</button>
<ul>
{/* html解析
dangerouslySetInnerHTML={{__html:item}} */}
{this.state.list.map((item, index) => {
return (
<li
key={index + item}
onClick={this.deleteItem.bind(this, index)}
dangerouslySetInnerHTML={{ __html: item }}
>
{/* {item} */}
</li>
);
})}
{this.state.list.map((item, index) => {
return <XiaojiejieItem key={index} text={item} />;
})}
</ul>
</Fragment>
);
}
//输入框改变
inputChange(e) {
console.log(e.target.value);
//this.state.inputVal=e.target.value
this.setState({
inputVal: e.target.value
});
}
//新增列表
addList() {
this.setState({
list: [...this.state.list, this.state.inputVal],
inputVal: ""
});
}
//删除列表项
deleteItem(index) {
console.log(index);
let list = this.state.list;
list.splice(index, 1);
//错误写法,严禁操作state里面的值,影响性能
//this.state.list.splice(index,1);
this.setState({
list: list
});
}
}
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
TIP
setSate是一个异步方法
render(){
return(
<ul ref={(ul)=>{this.ul=ul}}>
....
</ul>
)
}
addList() {
// setState异步方法
this.setState({
list: [...this.state.list, this.state.inputVal],
inputVal:''
})
console.log(this.ul.querySelectorAll('li').length)
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
这样打印的话长度始终少了一个,因为console.log已经执行了,setState才执行完,故长度少1
解决办法
addList() {
// setState异步方法
this.setState({
list: [...this.state.list, this.state.inputVal],
inputVal:''
},()=>{
console.log('长度',this.ul.querySelectorAll('li').length)
})
}
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
# 父子组件传值
父组件
{
this.state.list.map((item, index) => {
return (
<XiaojiejieItem
key={index + item}
// 传值
content={item}
index={index}
// 传递方法
deleteItem={this.deleteItem.bind(this)}
/>
);
});
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
子组件
import React, { Component } from "react";
class XiaojiejieItem extends Component {
constructor(props) {
super(props);
this.handleClick = this.handleClick.bind(this);
}
render() {
return <li onClick={this.handleClick}>{this.props.content}</li>;
}
// 子组件调用父组件方法
handleClick() {
console.log(this.props.index);
this.props.deleteItem(this.props.index);
}
}
export default XiaojiejieItem;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17