Home > Back-end >  ReactJs component showing old data (which is not a list even)
ReactJs component showing old data (which is not a list even)

Time:02-22

import { useState, useEffect } from "react";
import axios from "axios";
import { useParams } from "react-router-dom";

const Post = () => {
  const params = useParams();

  const [post, setPost] = useState(null);

  useEffect(() => {
    fetchPost();
  }, []);

  const fetchPost = () => {
    axios
      .get(
        `https://api.example/v1/json/post?post=${params.postSlug}`
      )
      .then((response) => {
        setPost(response.data.data.post);
      })
      .catch((error) => console.log({ error }));
  };

  return post ? (
    <div className="singlePost">
      <div className="content" key="content">{post.content}</div>
    </div>
  ) : null;
};

export default Post;

This is my whole component and API is developed on laravel. If I change the backend data from db React client does not pull in the new content while if I paste the endpoint in a browser or Postman, it does display updated content. I know that I can just add a timestamp at the end of url to force frontend to pull new data everytime but that'll effect the efficiency of application. Can someone explain the reason and solution to this issue without using any cache burst (i.e. timestamp in url or 'no-cache' in axios headers).

Thanks in advance

CodePudding user response:

Make sure you got web inspector networks' cache disabled.

Make sure that the data you're receiving is exactly what you're accessing: response.data.data.post.data.data doesn't seem well. Make sure you receive an object and not an array, because you need to map your content if it is an array.

CodePudding user response:

If you are sure data is updated in DB, your backend is working properly and you are refreshing your react app and still can't see the updated data, then we don't have enough information to solve your issue.

Are you sure you are making the same request from postman and from the react app? Did you try deleting cache from the browser?

One solution to debug this could be creating a button that calls your fetchPost method on click and see what happens

  • Related