mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-28 21:41:40 +00:00
574 B
574 B
layout | title |
---|---|
layout.njk | </> htmx - high power tools for html |
The method-override
Extension
This extension makes non-GET
and POST
requests use a POST
with the X-HTTP-Method-Override
header set to the
actual HTTP method. This is necessary when dealing with some firewall or proxy situations.
Usage
<body hx-ext="method-override">
<button hx-put="/update">
This request will be made as a POST w/ the X-HTTP-Method-Override Header Set
</button>
</body>