作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是第一次尝试 React/Redux/JS。我对在组件中设置状态还是让 redux 更新它有点困惑。
我想单击一个按钮将 lightOn 设置为 true 并显示更新后的 this.props.lightOn 值。我缺少一些基本但不确定是什么的东西。
行动:
export const setLight = lightStatus => dispatch => {
const res = lightStatus;
console.log(res); // => true on click
dispatch({ type: SET_LIGHT, payload: res });
};
在组件中,{this.props.onLight} 未定义,所以我没有正确更新状态:
import React, { Component } from 'react';
import { connect } from 'react-redux';
//import * as actions from '../actions';
import { setLight } from '../actions';
import { bindActionCreators } from 'redux';
class Light extends Component {
render() {
return (
<div>
Light Status: {this.props.lightOn}
<button
className="btn"
onClick={() => this.props.setLight(true)}
>
Set Light!
</button>
</div>
);
}
}
function mapStateToProps(state) {
return {
lightOn: state.lightOn
};
}
function mapDispatchToProps(dispatch) {
//whenever selectBook is called the result should be passed to all of our reducers
return bindActionCreators({ setLight: setLight }, dispatch);
}
export default connect(mapStateToProps, mapDispatchToProps)(Light);
reducer(使用扩展运算符更新):
import { SET_LIGHT } from '../actions/types';
export default function(state = [], action) {
switch (action.type) {
case SET_LIGHT:
return { ...state, lightOn: action.payload };
default:
return state;
}
}
最佳答案
如何将其设置为状态而不是直接传递给函数?首先将其绑定(bind)到 Constructor 中,然后单击 setState 为 true?
constructor(props) {
super(props);
this.state:{lightOn: false};
this.OnClick = this.OnClick.bind(this);
}
onClick(event) {
this.setState({lightOn: true});
}
onClick ={this.onClick()}
当你使用 redux 时,你可以通过返回一个新的状态来做到这一点
return {...state, action.payload };
关于javascript - react 终极版 : Getting Props And Updating State,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47115233/
我是一名优秀的程序员,十分优秀!