我正在使用ajax将数据发布到没有html表单标签的控制器。现在我想知道使用__RequestVerificationToken是必要的吗?以及何时应使用__RequestVerificationToken
<i id="getreadnot" class="fa fa-users"></i>
<script>
$('#getreadnot').click(function () {
let Url = '/Admin/Home/Notification';
$.ajax({
type: 'post',
url: Url,
dataType: "html",
contentType: "application/json; charset=utf-8",
})
});
</script>
[HttpPost]
public string Notification()
{
return db.SiteInfos.Where(s => s.id == "Notifications").Select(s => s.value).FirstOrDefault();
}
答案 0 :(得分:-1)
嗨,我的朋友,我认为没有必要