You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While this doesn't cause any functional issues, it does reduce URL readability. Upon investigation,
I found this is related to the usage of $request->fullUrl() in Inertia's Responseclass.
I'd appreciate your thoughts on maintaining more readable URLs. Any insights from developers who have encountered similar situations or have experience with this would be valuable.
In my project using InertiaJS, I've noticed that square brackets ([]) in URLs are automatically encoded.
For example:
Original URL:
https://app.test/user?tableFilters[is_active][value]=1
Transformed URL:
https://app.test/user?tableFilters%5Bis_active%5D%5Bvalue%5D=1
While this doesn't cause any functional issues, it does reduce URL readability. Upon investigation,
I found this is related to the usage of
$request->fullUrl()
in Inertia'sResponse
class.I'd appreciate your thoughts on maintaining more readable URLs. Any insights from developers who have encountered similar situations or have experience with this would be valuable.
The text was updated successfully, but these errors were encountered: