Skip to content

Commit 79ca9c6

Browse files
committed
Use Vary header in htmx views to fix caching issues (back button)
1 parent 990daf7 commit 79ca9c6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

bolt-htmx/bolt/htmx/views.py

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import re
22

3+
from bolt.utils.cache import patch_vary_headers
4+
35

46
class HTMXViewMixin:
57
htmx_template_name = ""
@@ -19,6 +21,13 @@ def render_template(self):
1921

2022
return template.render(context)
2123

24+
def get_response(self):
25+
response = super().get_response()
26+
# Tell browser caching to also consider the fragment header,
27+
# not just the url/cookie.
28+
patch_vary_headers(response, ["HX-Request", "BHX-Fragment", "BHX-Action"])
29+
return response
30+
2231
def get_request_handler(self):
2332
if self.is_htmx_request:
2433
# You can use an htmx_{method} method on views

0 commit comments

Comments
 (0)