最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

reactjs - Catch 504 (Gateway Timeout) Error in React, JavaScript - Stack Overflow

matteradmin12PV0评论

I have a working API to get items from the server as below. I am using React to use this data. Now, I want to catch all server errors that begins with 5__ and display a message like "No connection with internet" or something like that.

 export const GetItems = (operand, searchValue) => {
      const trimmedValue = searchValue.trim();
      let binedResults;
      // make 2 API calls to search on both item_name and code;
      // then bine them;
      // there is no API method to do this, that I could find
      return getItemsByName(operand, trimmedValue)
      .then(result => (
        (binedResults = [].concat(result))
      ))
      .then(() => getItemsByCode(operand, trimmedValue))
      .then(result => (
        (binedResults = binedResults.concat(result))
      ));
    };

Currently, I need to look at the console to check if there is a problem with connection.


Updated as @Dane requested

const getItemsByCode = (operand, searchValue) => (
  FetchToJson(BuildCodeSearchUrl(operand, searchValue))
);

It's just calling a method to build the URL. You can consider that everything is working good, getting the response if there is a connection.

I have a working API to get items from the server as below. I am using React to use this data. Now, I want to catch all server errors that begins with 5__ and display a message like "No connection with internet" or something like that.

 export const GetItems = (operand, searchValue) => {
      const trimmedValue = searchValue.trim();
      let binedResults;
      // make 2 API calls to search on both item_name and code;
      // then bine them;
      // there is no API method to do this, that I could find
      return getItemsByName(operand, trimmedValue)
      .then(result => (
        (binedResults = [].concat(result))
      ))
      .then(() => getItemsByCode(operand, trimmedValue))
      .then(result => (
        (binedResults = binedResults.concat(result))
      ));
    };

Currently, I need to look at the console to check if there is a problem with connection.


Updated as @Dane requested

const getItemsByCode = (operand, searchValue) => (
  FetchToJson(BuildCodeSearchUrl(operand, searchValue))
);

It's just calling a method to build the URL. You can consider that everything is working good, getting the response if there is a connection.

Share Improve this question edited Nov 27, 2017 at 6:54 psuresh asked Nov 27, 2017 at 6:08 psureshpsuresh 5842 gold badges14 silver badges27 bronze badges 2
  • Can you please add the code for getItemsByCode as well ? – Dane Commented Nov 27, 2017 at 6:45
  • wat http library are you using ? – Panther Commented Nov 27, 2017 at 7:39
Add a ment  | 

1 Answer 1

Reset to default 4

Use catch():

return getItemsByName(operand, trimmedValue)
      .then(result => (
        (binedResults = [].concat(result))
      ))
      .then(() => getItemsByCode(operand, trimmedValue))
      .then(result => (
        (binedResults = binedResults.concat(result))
      ))
      .catch((error) => {
        if (error.response) { // if there is response, it means its not a 50x, but 4xx

        } else {   // gets activated on 50x errors, since no response from server
          // do whatever you want here :)
        }            
      });

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far