在我的项目中,我使用的是 React + Next.js。对于路线,我使用图书馆 next-routes。当您导航嵌套路由"{category alias}/filter"
时,页面会重新加载。
添加路线 -routes.add ({name: 'products', pattern: '/:noname/filter', page: 'products'})
链接到路线 -<Link route="category_alias/filter">Products</ Link>
如何在不重新加载的情况下使其工作?