在mvc中进行远程验证的成功响应

时间:2012-05-22 13:21:46

标签: asp.net-mvc-3 model-view-controller

我正在使用远程验证来检查我的asp.net mvc 3应用程序(C#)注册时的用户名是否可用。

我正在使用MVC远程属性验证:

[Remote("IsUserNameAvailable", "User")]
public string UserName { get; set; }

当我退回时:

return Json(true, JsonRequestBehavior.AllowGet);

然后我想执行类似设置隐藏字段值的操作,这是从操作返回或显示绿色图标图像。我还希望返回ID为true。

如何实现这一目标?

简而言之,我想在成功时做点什么。

1 个答案:

答案 0 :(得分:22)

实现这一目标的一种方法是从验证操作中添加自定义HTTP响应标头:

public ActionResult IsUserNameAvailable(string username)
{
    if (IsValid(username))
    {
        // add the id that you want to communicate to the client
        // in case of validation success as a custom HTTP header
        Response.AddHeader("X-ID", "123");
        return Json(true, JsonRequestBehavior.AllowGet);
    }

    return Json("The username is invalid", JsonRequestBehavior.AllowGet);
}

现在在客户端上我们显然有一个标准表单和用户名的输入字段:

@model MyViewModel
@using (Html.BeginForm())
{
    @Html.EditorFor(x => x.UserName)
    @Html.ValidationMessageFor(x => x.UserName)
    <button type="submit">OK</button>
}

现在最后一个难题是将complete处理程序附加到用户名字段的remote规则中:

$(function () {
    $('#UserName').rules().remote.complete = function (xhr) {
        if (xhr.status == 200 && xhr.responseText === 'true') {
            // validation succeeded => we fetch the id that
            // was sent from the server
            var id = xhr.getResponseHeader('X-ID');

            // and of course we do something useful with this id
            alert(id);
        }
    };
});