我有与JSON.stringify发布数据控制器类jQuery代码,但是当我用AntiForgeryToken,它不工作..是什么更好的办法,以确保JSON后或我错过了什么....
其次我需要附加到这个..即加密来保护JSON数据...
非常感谢先进的帮助...
<script type="text/javascript">
$(document).ready(function () {
$('#id_login_submit').click(function () {
var _authetication_Data = { _UserName: $('#u1').val(), _Password: $('#p1').val() }
$.ajax({
type: "POST",
url: "/Account/ProcessLoginRequest",
data: JSON.stringify({ model: _authetication_Data }),
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (response) {
alert(response);
}
});
});
});
</script>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
@Html.LabelFor(m => m._UserName)
@Html.TextBoxFor(m => m._UserName, new { id = "u1"})
@Html.LabelFor(m => m._Password)
@Html.PasswordFor(m => m._Password, new { id = "p1"})
<input type="button" id="id_login_submit" value="Login" />
}
[HttpPost]
[ValidateAntiForgeryToken]
public JsonResult ProcessLoginRequest(LoginModel model)
{
string returnString = null;
if (ModelState.IsValid && WebSecurity.Login(model._UserName, model._Password, persistCookie: true))
{
returnString = "user is authenticated";
}
else
{ returnString = "Message from loginProcess"; }
return Json(returnString, JsonRequestBehavior.AllowGet);
}