Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 SWR 显示分页组件,与docs 中的示例非常相似。我的钥匙看起来像
useSWR(`/api/items?offset=${offset}`)
我想上传一个新的项目列表,我想告诉 SWR 重新验证所有项目请求,因为它们将不再有效。我假设mutate仍然是执行此操作的正确途径,但是有没有一种方法可以告诉 mutate 一次使许多键无效?或者更好,所有匹配的键/api/items(.*)?
mutate
/api/items(.*)
谢谢!