Skip to content

Commit 873aca2

Browse files
Merge pull request #38 from khalidabuhakmeh/fix-antiforgery-path
Fix `HtmxAntiforgeryScriptEndpoints.Path` #37
2 parents d25882b + 76e00de commit 873aca2

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

src/Htmx.TagHelpers/HtmxAntiforgeryScriptEndpoints.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ namespace Htmx.TagHelpers;
77
public static class HtmxAntiforgeryScriptEndpoints
88
{
99
/// <summary>
10-
/// The path to the antiforgery script that is used from HTML
10+
/// The path to the antiforgery script that is used from HTML.
11+
/// Note: Be sure it is rooted path ("starts with '/') or else it can break as paths get more nested.
1112
/// </summary>
12-
public static string Path { get; private set; } = "_htmx/antiforgery.js";
13+
public static string Path { get; private set; } = "/_htmx/antiforgery.js";
1314

1415
/// <summary>
1516
/// Register an endpoint that responds with the HTMX antiforgery script.<br/>

test/Sample/Pages/Nested/Index.cshtml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
@page
2+
@model IndexModel
3+
@{
4+
ViewData["Title"] = "Home page";
5+
}
6+
7+
<div class="text-center">
8+
<h1 class="display-4">Welcome</h1>
9+
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
10+
</div>
11+
12+
<div hx-target="this">
13+
<button hx-post
14+
hx-page="Index"
15+
hx-page-handler="Snippet"
16+
hx-swap="outerHtml">
17+
Click Me (Razor Page w/ Handler)
18+
</button>
19+
</div>
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using Microsoft.AspNetCore.Mvc;
2+
using Microsoft.AspNetCore.Mvc.RazorPages;
3+
4+
namespace Sample.Pages.Nested;
5+
6+
public class IndexModel : PageModel
7+
{
8+
public IndexModel(ILogger<IndexModel> logger)
9+
{
10+
}
11+
12+
public void OnGet()
13+
{
14+
}
15+
16+
public IActionResult OnPostSnippet()
17+
{
18+
return Content("<h2>Hello, World!</h2>", "text/html");
19+
}
20+
}

0 commit comments

Comments
 (0)