Skip to content

Commit 8d12db4

Browse files
committed
fix: discard params in path redirect
Fix #1401
1 parent 34c27d6 commit 8d12db4

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

__tests__/warnings.spec.ts

+18-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe('warnings', () => {
3232
history,
3333
routes: [{ path: '/:p', name: 'p', component }],
3434
})
35-
router.resolve({ path: '/p', params: { p: 'p' } })
35+
router.push({ path: '/p', params: { p: 'p' } })
3636
expect('Path "/p" was passed with params').toHaveBeenWarned()
3737
})
3838

@@ -42,10 +42,26 @@ describe('warnings', () => {
4242
history,
4343
routes: [{ path: '/:p', name: 'p', component }],
4444
})
45-
router.resolve({ path: '/p', name: 'p', params: { p: 'p' } })
45+
router.push({ path: '/p', name: 'p', params: { p: 'p' } })
4646
expect('Path "/" was passed with params').not.toHaveBeenWarned()
4747
})
4848

49+
it('does not warn when redirecting from params', async () => {
50+
const history = createMemoryHistory()
51+
const router = createRouter({
52+
history,
53+
routes: [
54+
{
55+
path: '/p/:p',
56+
redirect: to => ({ path: '/s', query: { p: to.params.p } }),
57+
},
58+
{ path: '/s', component },
59+
],
60+
})
61+
router.push({ path: '/p/abc' })
62+
expect('was passed with params').not.toHaveBeenWarned()
63+
})
64+
4965
it('warns if an alias is missing params', async () => {
5066
createRouter({
5167
history: createMemoryHistory(),

src/router.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,8 @@ export function createRouter<Options extends RouterOptions>(
650650
{
651651
query: to.query,
652652
hash: to.hash,
653-
params: to.params,
653+
// avoid transferring params if the redirect has a path
654+
params: 'path' in newTargetLocation ? {} : to.params,
654655
},
655656
newTargetLocation
656657
)

0 commit comments

Comments
 (0)