我们来实现一个登入注销:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>条件渲染</title>
<script src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<!-- <script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script> -->
<!-- <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.min.js"></script>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
function UserGreet() {
return (
<h1>welcome back!</h1>
)
}
function GuestGreet() {
return (
<h1>Please sign up!</h1>
)
}
class Greet extends React.Component {
constructor(props) {
super(props)
}
render(){
if (this.props.isLogin) {
return (
<UserGreet></UserGreet>
)
} else {
return (
<GuestGreet></GuestGreet>
)
}
}
}
function Logout(props) {
return (
<button onClick={() => props.logout()}>登出</button>
)
}
function Login(props) {
return (
<button onClick={() => props.login()}>登入</button>
)
}
class ButtonBox extends React.Component {
constructor(props) {
super(props)
}
render() {
if (this.props.isLogin) {
return (
<Logout logout={this.props.logout}></Logout>
)
} else {
return (
<Login login={this.props.login}></Login>
)
}
}
}
class LoginControl extends React.Component {
constructor(props) {
super(props)
this.state = { isLogin: false }
this.login = this.login.bind(this)
this.logout = this.logout.bind(this)
}
// 登入
login() {
this.setState({isLogin: true})
}
// 登出
logout() {
this.setState({isLogin: false})
}
render() {
return (
<div>
<Greet isLogin={this.state.isLogin}></Greet>
<ButtonBox isLogin={this.state.isLogin} login={this.login} logout={this.logout}></ButtonBox>
</div>
)
}
}
ReactDOM.render(
<LoginControl />,
document.getElementById('root')
)
</script>
</body>
</html>
运行效果图:
设计图:
上面实现功能涉及到react
中组件传值、条件渲染以及state
管理策略。
我们先来说说父子组件通信:
上面例子中,登入状态isLogin
交由LoginControl
组件管理,通过props
对象向子组件传递,那么子组件如何更改isLogin
的值呢?拿Login
组件为例,该组件是一个登入按钮组件,点击时会将isLogin
值设置为true
,显然我们不能直接更改LoginControl
组件传递过来isLogin
值,因为isLogin
存在于LoginControl
组件的私有state
中,既然是私有的,那么我们可以在LoginControl
组件里定义一个更改isLogin
的方法,然后交由Login
组件触发。例子中我们通过props
将方法交由子组件,但需要注意的是该方法执行者应该是父组件,所以在父组件中做了this
绑定。
state
管理策略:
上面例子中Greet
、Button
子组件都用到了isLogin
状态,为了让这两个组件能够共享同一个状态值,显然我们得找到他们俩的共同祖先,将isLogin
交由祖先管理
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。