Replies: 3 comments 3 replies
-
If you just pass a single string to say Mojo::URL->new("https://localhost/db?previous=1")->query("thing=more=things") will give you:
|
Beta Was this translation helpful? Give feedback.
-
Thanks, this is almost good. |
Beta Was this translation helpful? Give feedback.
-
the above sounds enough good to me. In my application I deal with a lot of URLs, and only this one has the problem, so I can deal with a "not so good looking code" for one case. |
Beta Was this translation helpful? Give feedback.
-
I need to generate dynamically URLs with a query string like
table=XYZ=all
(note that the parameter istable
and the value includes an equal sign).this works and prints
table=XYZ=all
while the following one:prints
table=%3DXYZ%3Dall
, unluckily the backend cannot understand the (correctly) escaped equal sign.Is there a way I can generate an unescaped value for the parameter?
Beta Was this translation helpful? Give feedback.
All reactions