using go method how can I pass extra information to a page
using go method how can I pass extra information to a page
5 Replies
Hi @Todilo. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
To pass extra information to a page using the
go
method in refine, you can utilize the query
parameter. The query
parameter allows you to add custom query parameters to the URL when navigating. Here's how you can do it:
In this example, when the button is clicked, it will navigate to the "/posts" page and add the query parameters extraInfo=someValue
and anotherParam=anotherValue
to the URL.
You can pass any additional information you need through the query
object. The routerProvider
will convert this object into a query string in the URL.
If you want to keep the existing query parameters while adding new ones, you can use the options.keepQuery
parameter:
This will preserve the existing query parameters and add the new one.
For more detailed information about the useGo
hook and its parameters, you can refer to the useGo documentation.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@207945811592478720> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
mute-goldOP•5w ago
@kapa.ai and then on the page with the new query how do I parse the query?
Let me check the knowledge base for you again. One moment! :books:
----------------------
To parse the query parameters on the page you've navigated to using the
go
method, you can use the useParsed
hook provided by refine. This hook allows you to access the URL and query parameters, along with other useful information. Here's how you can use it:
In this example, the useParsed
hook returns an object containing various properties, including params
. The params
object contains all the parameters parsed from the URL, including both URL parameters and query parameters.
You can destructure the specific query parameters you're interested in from the params
object. In the example above, we're extracting extraInfo
and anotherParam
, which correspond to the query parameters we added in the previous go
method call.
For more detailed information about the useParsed
hook and its return values, you can refer to the useParsed documentation.
Remember that the availability and format of the query parameters depend on how you set them up in your go
method call and your router configuration.
Documentation > Docs > Routing > Hooks > useParsed
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@207945811592478720> Kapa.ai is still learning and improving, please let me know how I did by reacting below.