我正在使用来自Apollo的useLazyQuery
钩子,进入无限循环。这是我的组件:
import styled from 'styled-components'
import { useLazyQuery } from "@apollo/react-hooks"
import GENERATE_EFT_REFERENCE_NUMBER from "./graphql/generate-eft-reference-number.graphql"
let Link = styled.a`
color: ${props => props.theme.color.turquoise500};
cursor: pointer;
text-decoration: underline;
`
const GenerateEftReferenceLink = ({
externalAccountId,
financialMethodId,
internalAccountId,
highestReferenceNumber,
methodId,
updateMethod
}) => {
const [generateEftReference = {}, { called, loading, data }] = useLazyQuery(
GENERATE_EFT_REFERENCE_NUMBER,
{
variables: {
externalAccountId,
financialMethodId,
internalAccountId,
highestReferenceNumber
},
onCompleted: ({ generateEftReferenceNumber: reconciliationSerialNumber }) => {
updateMethod({ reconciliationSerialNumber }, methodId)
}
}
)
return <Link onClick={generateEftReference}>Click Me</Link>
}
export default GenerateEftReferenceLink
在onCompleted
选项中,我得到结果并使用回调(updateMethod
)更新我的对象。
我遇到的问题是查询被一遍又一遍地调用。我每次都打onCompleted
,它叫updateMethod
,我一直处于这个无限循环中。仅在单击onClick
时才调用Link
(我通过在debugger
中放入onClick
来验证),因此这与{ {1}}钩子。
我通过更改为使用useLazyQuery
组件来解决此问题,但我想了解为什么我会因使用钩子而进入这种状态。
有什么想法吗?