Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

reactjs - Network Error when attemting to fetch resource

I try to do a request to an API, but sometimes request is not done and the error message is:

TypeError: Network Error when attemting to fetch resource.

enter image description here

I checked by two browser chrome and firefox.

enter image description here

Here i attached some screenshot of the desktop.

enter image description here

I lookforward to hear any solutions.

Thank you.

Some lines of the code to manage request and response:

handleSubmit(event) {
    salone
      .get(`/attestati/verifypassword?contentId=${this.props.id}&password=${this.state.psw}`, {
        headers: {
          Authorization: `Bearer ${localStorage.getItem("token")}`,
          "content-type": "application/json",
        },
      })
      .then((response) => {
        this.setState({
          changePas: response?.data.detail,
        })
        console.log(this.state.changePas);
      })

      .catch((error) => {
        // window.open(error.response?.data.detail)
        console.log(error.response?.data.msg);
        this.setState({ changePas: error.response?.data.msg })
      })
}

and onPSWChange function:

onPSWChange(event) {
    this.setState({ psw: event.target.value })
  }

Here is the submit form, in render we put it:

<div><Form method="get" id="contact-form" onSubmit={(e) => this.handleSubmit(e)} >
          <label htmlFor="PSW" contentEditable="true" ></label>
          <textarea type="text" style={{ height: "38px", resize: "none" }} placeholder="inserisci password" className="form-control" onChange={this.onPSWChange} />
          <button type="submit" className="button blue-btn w-100">Invia</button>
 </Form></div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...