htmx-ext-path-params
v2.0.0
Published
This extension uses request parameters to populate path variables. Used parameters are removed so they won't be sent in the query string or body anymore.
Downloads
234
Readme
This extension uses request parameters to populate path variables. Used parameters are removed so they won't be sent in the query string or body anymore.
Install
<script src="https://unpkg.com/[email protected]/path-params.js">
Usage
This would invoke URL /items/42?foo=bar
<div hx-ext="path-params">
<a hx-get="/items/{itemId}" hx-vals='{"itemId": "42", "foo": "bar"}'>test</div>
</div>