为了账号安全,请及时绑定邮箱和手机立即绑定

React中setState方法无效

React中setState方法无效

慕哥9229398 2018-10-11 13:15:11
看代码class Background extends React.Component{    constructor(opts) {        super(opts);        this.initStatus();     }     initStatus() {        this.state = {            effect: false         }     }     render(){        this.initStatus();        return <div className={cs({background: true, effect: this.state.effect})}>             <div className="background-pannel">                 <div className="background-image-back"></div>             </div>             <div className="background-pannel">                 <div className="background-image"></div>             </div>         </div>     }          componentDidMount() {        this.setState({effect: true}, ()=>{            console.log(this.state.effect);         })     } }export { Background }为什么没有效果,打印出来的effect值依然是false?
查看完整描述

1 回答

?
红糖糍粑

TA贡献1815条经验 获得超6个赞

是有效果的,不过在render里面的 this.initStatus()又重新把它设置为false了


查看完整回答
反对 回复 2018-11-08
  • 1 回答
  • 0 关注
  • 1476 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信