第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

來(lái)自 Redux 的 React 狀態(tài)更新導(dǎo)致超出最大更新深度錯(cuò)誤

來(lái)自 Redux 的 React 狀態(tài)更新導(dǎo)致超出最大更新深度錯(cuò)誤

互換的青春 2023-12-14 15:48:07
我對(duì) React 和 Redux 相當(dāng)陌生,并且在根據(jù)服務(wù)器的錯(cuò)誤響應(yīng)(使用 Express)顯示錯(cuò)誤狀態(tài)時(shí)遇到了一些困難。我研究過(guò)的大多數(shù)其他類似問(wèn)題都與 onClick、onSubmit 或 onChange 相關(guān),但我還沒(méi)有看到像我這樣的問(wèn)題。預(yù)期結(jié)果:從存儲(chǔ)中檢索錯(cuò)誤狀態(tài)并顯示在組件內(nèi)問(wèn)題源于此部分:if (nextProps.errors){  this.setState({ errors: nextProps.errors });    }完整的Login.js:import React, { Component } from "react";import { connect } from "react-redux";import PropTypes from "prop-types";import "../css/login.css";import { loginUser } from "../../redux/actions/authActions";import TextFieldGroup from "../common/textFieldGroup";class Login extends Component {  constructor() {    super();    this.state = {      username: '',      password: '',      errors: {}    };        this.onChange = this.onChange.bind(this);    this.onSubmit = this.onSubmit.bind(this);  }  componentDidMount() {    if (this.props.auth.isAuthenticated) {      this.props.history.push('/dashboard');    }  }  componentDidUpdate(nextProps) {    if (nextProps.auth.isAuthenticated) {      this.props.history.push('/dashboard');    }    if (nextProps.errors){        this.setState({ errors: nextProps.errors });        }  }  onSubmit(e) {    e.preventDefault();    const userData = {      username: this.state.username,      password: this.state.password    };    this.props.loginUser(userData);  }  onChange(e) {    this.setState({ [e.target.name]: e.target.value });  }  render() {    const { errors } = this.state;    return (      <div className="login">        <div className="container">          <div className="row">            <div className="col-md-8 m-auto">              <h1 className="display-4 text-center">Log In</h1>              <p className="lead text-center">                <input type="submit" className="btn btn-info btn-block mt-4" />              </form>            </div>          </div>        </div>      </div>    );  }}我試過(guò)了:將值分配給臨時(shí)變量,但這非常笨拙,并且在我看來(lái)使代碼變得混亂。驗(yàn)證它是否為空/不為空,這自然會(huì)加強(qiáng)無(wú)限循環(huán)或積極驗(yàn)證,因?yàn)樗粸榭?,因此錯(cuò)誤狀態(tài)永遠(yuǎn)不會(huì)在頁(yè)面上更新。我確實(shí)從服務(wù)器獲得了正確的錯(cuò)誤響應(yīng),正如我在 Redux 開(kāi)發(fā)工具中看到的那樣。提前致謝。
查看完整描述

1 回答

?
開(kāi)滿天機(jī)

TA貢獻(xiàn)1786條經(jīng)驗(yàn) 獲得超13個(gè)贊

更改條件:

if?(nextProps.errors)

到:

if?(this.props.errors?!==?nextProps.errors)

目前看來(lái)運(yùn)作良好。


查看完整回答
反對(duì) 回復(fù) 2023-12-14
  • 1 回答
  • 0 關(guān)注
  • 185 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)