“assíncrono no useeffect” Respostas de código

como usar async aguardar interno useeffect

useEffect(() => {
    async function fetchData() {
        try {
            const response = await fetch(
                `https://www.reddit.com/r/${subreddit}.json`
            );
            const json = await response.json();
            setPosts(json.data.children.map(it => it.data));
        } catch (e) {
            console.error(e);
        }
    };
    fetchData();
}, []);
Red Team

assíncrono no useeffect

  useEffect(() => {
    (async () => {
      const products = await api.index()
      setFilteredProducts(products)
      setProducts(products)
    })()
  }, [])

Runtime Terror

assíncrono no useeffect

function myApp() {
  const [data, setdata] = useState()

  useEffect(() => {
    async function fetchMyAPI() {
      const response = await fetch('api/data')
      response = await response.json()
      setdata(response)
    }

    fetchMyAPI()
  }, [])
}
Keerthan Chand

Respostas semelhantes a “assíncrono no useeffect”

Perguntas semelhantes a “assíncrono no useeffect”

Mais respostas relacionadas para “assíncrono no useeffect” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código