Custom React Hook не работает должным образом - PullRequest
0 голосов
/ 29 марта 2020

Я пытаюсь использовать ниже настраиваемый хук, но он не работает должным образом

CustomHook:

import { useEffect, useState } from 'react'

import { createAPIInstance } from '../utils/api'
import { getBaseUrl } from '../utils/functions'

const BASE_URL = getBaseUrl()

const useGetAPI = (endpoint) => {
  const [data, setData] = useState([])
  const api = createAPIInstance()

  const getData = async () => {
    const response = await api.get(`${BASE_URL}${endpoint}`)
    setData(response.data)
  }

  useEffect(() => {
    getData()
  }, [])

  return data
}

export {
  useGetAPI
}

Вот пользовательское использование хука

app. js

function App() {
  const [details, setDetails] = useState({})

  useEffect(() => {
    const fetchData = async () => {
      const details = useGetAPI('/some-api-endpoint')
      setDetails(details)
    }
    fetchData()
  }, [])

  return (
    <div></div>
  )
}

Ошибка на консоли chrome:

Uncaught (in promise) Invariant Violation: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app
See fb.me/react-invalid-hook-call for tips about how to debug and fix this problem.
    at invariant

Версия React: 16.13.1 Версия React-Dom: 16.13.1

1 Ответ

0 голосов
/ 29 марта 2020

Для app.js:

Почему вы инициализируете функцию в том же месте?

Пример:

const fetchData = async () => {
      const details = useGetAPI('/some-api-endpoint')
      setDetails(details)
}

useEffect(async () => {
    fetchData()
}, [])

Вы не export default ваш функция.

Пример:

export default function App() {

Для CustomHook:

Вы не говорите, поскольку ваша функция использует async значения.

Пример:

const useGetAPI = async (endpoint) => {

useEffect(async () => {
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...