我正在尝试在用户首次登录时执行用户验证。如果用户未经过验证,那么我会从代码中发送userid
来回拨方法
在回调中,我使用
(window.location.href = "/verifyuser?id=" + response.userId)
然而我不希望这样。相反,我想用值来对URL进行ajax调用。我不希望userId在url中可见。 我尝试使用
$.ajax({
type:"POST"
url:"/verifyuser",
data:{id:response.userId},
async:false
});
但它不起作用。我的服务器端代码如下(我使用的是mvc 4)
[HttpGet]
public ActionResult VerifyUser(string id)
{
ViewBag.Id = id;
return View("~/Views/User/VerifyUser.cshtml");
}
我的js代码如下:
var postObj = {
url: "Home/Login",
data: {},
callback: function (status, response) {
if (response.status === 400) {
var errors = response.errors;
var serverValidate = new PS.Validate(userObj);
var isvalid = serverValidate.showErrors(errors);
}
else {
if (response.userId !== null && response.userId !== undefined) {
window.location.href = "/verifyuser?id=" + response.userId;
}
else {
window.location.href = "/user-dashboard";
}
}
}
};
me.fm.post(postObj);
使用或不使用Ajax有没有办法做到这一点?感谢。
答案 0 :(得分:1)
如果您不想进行ajax调用,可以在控制器中返回RedirectToAction ActionResult,但是您必须确保页面执行的实际表单不使用ajax
答案 1 :(得分:0)
如果您将AJAX请求更改为POST,则还必须允许控制器操作响应POST请求。
[HttpPost]
public ActionResult VerifyUser(string id)
{
ViewBag.Id = id;
return View("~/Views/User/VerifyUser.cshtml");
}