您好,我正在尝试通过自定义useFetch钩子使用flow。这是代码:
import React, { useState, useEffect } from 'react'
function useFetch<FetchData>(
promiseFn: () => Promise<FetchData>,
args?: any[]
) {
const [loading, setLoading] = useState(false)
const [data, setData] = useState<?FetchData>()
const [error, setError] = useState<?Error>()
useEffect(() => {
setLoading(true)
promiseFn()
.then(setData)
.catch(setError)
.finally(() => setLoading(false))
})
return {
loading,
data,
error
}
}
function fetchKeys() {
return Promise.resolve([{ name: 'myKey' }])
}
type KeysData = {
name: string
}[]
function MyKeysPage() {
const { data, loading, error } = useFetch<KeysData>(fetchKeys)
if(!data) return 'Loading...'
return data.map(key => (<div>{key.name}</div>))
}
但是它抛出一个错误:
无法调用
data.map
,因为map
[1]中缺少属性FetchData
。
您可以在此处进行更好的查看:
所以我不知道该如何解决。感谢您的帮助。
答案 0 :(得分:1)
看来Flow不能正确推断返回类型。显式输入useFetch
有助于:
function useFetch<FetchData>(
promiseFn: () => Promise<FetchData>,
args?: any[]
): {data: ?FetchData, loading: bool, error: ?Error} {
// ...
}