gpt4 book ai didi

reactjs - 在 Next.js 中替换查询中的值

转载 作者:行者123 更新时间:2023-12-05 08:49:09 25 4
gpt4 key购买 nike

我正在使用 Next js。我使用查询参数创建 url:http://localhost:3000/cars?colors=red&nr=20。是否有可能,当我单击按钮时,仅更改 url 的特定部分,如:http://localhost:3000/cars?colors=blue&nr=20。所以在这种情况下,我只是将颜色更改为蓝色。我用过:

  router.replace(
{
pathname: '/...',
query: {
color: blue
},
},
undefined,
{
shallow: true,
},
);

但它不起作用。
如何解决这个问题?

最佳答案

您需要将所有查询添加到您的router.replace 查询中,例如

  router.replace(
{
pathname: '/...',
query: {
nr:20,
color: blue
},
},
undefined,
{
shallow: true,
},
);

为了更简单,你可以这样做

  router.replace(
{
pathname: '/...',
query: {
...router.query, // list all the queries here
color: blue // override the color property
},
},
undefined,
{
shallow: true,
},
);

关于reactjs - 在 Next.js 中替换查询中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64636739/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com