RTK 查询 useMutation 缺少 "reset" 方法?
RTK Query useMutation is missing "reset" method?
在 docs 中它说 useMutation
returns 一个元组,其第二个值是“变异结果”对象,并且该对象包括:
reset
- A method to reset the hook back to it's original state and remove the current result from the cache
但是我的钩子没有返回 reset
方法!我看到挂钩更新了返回的数据和所有内容,但没有 reset
成员。
有人用过这个方法吗?这可能是文档中的错误(因为 useQuery
有一个 reset
成员)
您使用的是旧版本的 RTK 吗?我认为这是在 1.8
中添加的
在 docs 中它说 useMutation
returns 一个元组,其第二个值是“变异结果”对象,并且该对象包括:
reset
- A method to reset the hook back to it's original state and remove the current result from the cache
但是我的钩子没有返回 reset
方法!我看到挂钩更新了返回的数据和所有内容,但没有 reset
成员。
有人用过这个方法吗?这可能是文档中的错误(因为 useQuery
有一个 reset
成员)
您使用的是旧版本的 RTK 吗?我认为这是在 1.8
中添加的