NextJS下一路线:如何为同一个键具有多个值?

时间:2019-05-06 16:40:28

标签: javascript router next next.js

我想知道如何使用nextjs路由为同一个键提供多个值,例如:

这就是我现在拥有的:

  

http://example.com/page?colors=white?numbers=1   query.colors将是字符串“ white”

这就是我想要的:

  

http://example.com/page?colors=white-red-blue?numbers=1-2-3我希望query.colors是一个包含[“ white”,“ red”,“ blue”]等字符串的数组

ps:我正在使用https://github.com/fridays/next-routes

修改:找到了https://github.com/fridays/next-routes/issues/250

1 个答案:

答案 0 :(得分:0)

仅使用一个?来拆分为查询参数。然后,您可以使用&显示多个值。然后,您将有一些关于如何在URL中显示数组的选择

.../page?colors=white&numbers=1