如何在 Net6 不显眼的 ajax 中将防伪令牌添加到“A”链接?

How to add an anti forgery token to an 'A' link in Net6 unobtrusive ajax?

提问人:Mattman85208 提问时间:12/21/2022 最后编辑:Qing GuoMattman85208 更新时间:12/22/2022 访问量:75

问:

如何在 Net6 不显眼的 ajax 中将防伪令牌添加到“A”链接?

我有一个链接,比如:

<a class="btn btn-warning btn-sm"
   data-ajax="true"
   data-ajax-begin="beginClearWCGWCs"
   data-ajax-update="#WCEditor"
   data-ajax-url="/Prefs/ClearWCGWGs/@ViewData["ActiveWCGID"]"
   data-ajax-method="get"
   data-ajax-token="@Html.AntiForgeryToken()"
   style="margin-bottom:10px;"
   title="Delete ALL">
   Delete All
 </a>

此链接有效,但 AntiForgeryToken 除外。

如何将防伪令牌添加到此“A”链接?

asp.net-mvc asp.net-core net-6.0 unobtrusive-ajax

评论

1赞 Qing Guo 12/22/2022
看看这个答案

答: 暂无答案