Join Discord
Powered by
if you have `<input name="q" hx-get="/search">`, h...
# rust-htmx
g
great-cartoon-12331
05/09/2023, 8:21 PM
if you have
<input name="q" hx-get="/search">
, htmx will send a request
GET /search?q=...
where
...
is the value entered in the input. basically it will be a query parameter so you handle that in the backend
Previous
Next