最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Next.js change locale for the current path that has query, using router - Stack Overflow

programmeradmin2浏览0评论

I have a central place to change locale. I show a list of locales, and when the user clicks on any of them, I use useRouter to redirect the user to the current page, but in the selected locale:

var router = useRouter();

const changeLocale = (selectedLocal) => {
    router.push({
            pathname: router.pathname,
            query: router.query
        }, {
            pathname: router.pathname,
            query: router.query
        }, { locale });
}

<div onClick={() => changeLocale('fr')}>Fr</div>

It works very well for URLs that have no parameters. But when the URL has parameters, it gets duplicated. For example, I have a list of conferences and when the user clicks on a conference I'll take him to the conference page using this Link:

<Link
    href={{
        pathname: '/conference/[id]',
        query: { id: conf.id }
    }}

This takes the user to the example/conference/5 for example. But when the user changes the locale on that page, I see the URL is changed to example/conference/5?id=5. As you can see, I have two duplicated id parameters here. And If I don't pass query to router.push, I see this error:

Error: The provided href (/conference/[id]) value is missing query values (id) to be interpolated properly. Read more:

How should I effectively reroute users and keep URL structure and parameters?

I have a central place to change locale. I show a list of locales, and when the user clicks on any of them, I use useRouter to redirect the user to the current page, but in the selected locale:

var router = useRouter();

const changeLocale = (selectedLocal) => {
    router.push({
            pathname: router.pathname,
            query: router.query
        }, {
            pathname: router.pathname,
            query: router.query
        }, { locale });
}

<div onClick={() => changeLocale('fr')}>Fr</div>

It works very well for URLs that have no parameters. But when the URL has parameters, it gets duplicated. For example, I have a list of conferences and when the user clicks on a conference I'll take him to the conference page using this Link:

<Link
    href={{
        pathname: '/conference/[id]',
        query: { id: conf.id }
    }}

This takes the user to the example./conference/5 for example. But when the user changes the locale on that page, I see the URL is changed to example./conference/5?id=5. As you can see, I have two duplicated id parameters here. And If I don't pass query to router.push, I see this error:

Error: The provided href (/conference/[id]) value is missing query values (id) to be interpolated properly. Read more: https://nextjs/docs/messages/href-interpolation-failed

How should I effectively reroute users and keep URL structure and parameters?

Share Improve this question edited Nov 20, 2021 at 5:17 Hossein Fallah asked Nov 20, 2021 at 4:56 Hossein FallahHossein Fallah 2,6299 gold badges29 silver badges73 bronze badges 2
  • In your changeLocale function, try replacing the router.push call with router.push(router.asPath, undefined, { locale: selectedLocal }). – juliomalves Commented Nov 21, 2021 at 12:06
  • Does this answer your question: How to switch back to the default locale in Next.js?? – juliomalves Commented Nov 21, 2021 at 12:09
Add a ment  | 

1 Answer 1

Reset to default 8

This worked for me:

    const changeLocale = (locale) => {
        router.push({
            route: router.pathname,
            query: router.query
        }, router.asPath, { locale });
    }

Basically, I only changed the second parameter of the router.push method.

I took it from the docs:

Note that to handle switching only the locale while preserving all routing information such as dynamic route query values or hidden href query values, you can provide the href parameter as an object:

import { useRouter } from 'next/router'
const router = useRouter()
const { pathname, asPath, query } = router
// change just the locale and maintain all other route information including href's query
router.push({ pathname, query }, asPath, { locale: nextLocale })
发布评论

评论列表(0)

  1. 暂无评论