我一直在玩阿波罗并重新取回,并且有问题。
我已经实现了一个在MouseOver 上预取数据的功能,当我将鼠标悬停在那个“组件”上时,它会同时发出两个相同的请求。任何想法为什么?
const prefetchData = (id) => () => {
client.query({
query:FETCH_DATA,
variables:{id},
})
}
<Link style={{ textDecoration: 'none' }} onMouseOver={prefetchData(id)} to={`/posts/${id}`}>