1

我不确定我做错了什么。我正在使用 Jquery.Validate 插件,它有一个远程字段,所以我这样做了:

$("#mainForm").validate(
    {
        rules:
        {
            UserName:
            {
                required: true
               ,remote: "Test"
            }
         ,messages:
        {
            UserName:
            {
                remote: "UserName has already been chosen. Please choose another one"
            }
        }

     }

所需的工作正常。是遥控器有问题。我正在使用 asp.net MVC 并且路径是正确的 - 它符合我的方法

public bool Test(string userName)
{
    return false;
}

它根据萤火虫返回false,但jquery.validate没有启动。我正在使用jquery.validate和jquery 1.3.2的1.5.5版

我错过了什么?

4

1 回答 1

2

我也被这个抓住了。

您需要返回一个具有 true 或 false 的 Json 对象,见下文:

    public ActionResult IsValidField()
    {
        String the_field = httpContextService.Request["Field_To_Test"];

        if (the_field == another_value)
          return Json(true);
        else 
          return Json(false);
    }
于 2009-08-08T23:33:11.927 回答