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

Categories

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

fetch - Slow Post request in React Native

I am making a post request in react-native using apisauce, but the request is too slow. The request takes around 1000ms in Postman, but is slower in react-native. How can I optimize this?

My sample response data is like

[
    {
      "email": "[email protected]",
      "id": 2753,
      "phone_number": "",
      "user_name": "New client"
    },
    {
      "email": "[email protected]",
      "id": 2754,
      "phone_number": "",
      "user_name": "New client"
    },
    {
      "email": "[email protected]",
      "id": 8868,
      "phone_number": "",
      "user_name": "Slow"
    }
  ]

And the program for post request is:


    const setConfigHeader = () =>
        api.setHeader(
          'Authorization',
          getState().login.data.access_token
            ? `Bearer ${getState().login.data.access_token}`
            : null,
        );
    
    const getAddressBookData = data =>
        api.post(globalConstants.user_address_book, data, setConfigHeader());


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
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
...