远程验证不会将数据传递给操作

时间:2013-02-14 10:07:26

标签: c# asp.net-mvc validation remote-validation

我有模特:

public class MyModel
...fields
[Remote(ActionName, ControllerName)]
public string SomeNumber { get; set; }
..fields

在ControllerName控制器中执行操作:

public JsonResult ActionName(string someNumber)
{...}

但是当调用actions时,参数someNumber总是为null。 当我尝试调试它时,我得到了

GET /ControllerName/ActionName?MyModel.SomeNumber =34189736 

我怎样才能让它发挥作用? (我无法传递整个模型MyModel,并且无法在我的视图中更改MyModel.SomeNumber字段名称)

UPD。在我看来输入:

<input data-val="true" data-val-remote-additionalfields="*.SomeNumber" data-val-remote-url="/ControllerName/ActionName" id="MyModel_SomeNumber" name="MyModel.SomeNumber" type="text" value="34189734" class="valid">

UPD 解决了! :) 我使用单个字段SomeNumber创建新模型并使用前缀:

SomeNumber([Bind(Prefix = "MyModel")]MySingleFieldModel model)

3 个答案:

答案 0 :(得分:6)

如果您使用的是嵌套ViewModels,则需要在ViewModel操作中接受父Validation作为参数。例如:

public class ParentViewModel
{
    public UserViewModel User {get; set; }

    //....
}

public class UserViewModel 
{
    [Remote("UniqueUsername", "Validation")]
    public string Username { get; set; }

    //....
}

在ValidationController中:

public class ValidationController : Controller
{ 
     public JsonResult UniqueUsername(ParentViewModel Registration) 
     {
        var Username = Registration.User.Username; //access the child view model property like so

        //Validate and return JsonResult

     }
}

答案 1 :(得分:2)

尝试使用模型作为参数。 这样它就可以将值绑定到它。

public JsonResult ActionName(MyModel model)
{
    //...
    model.SomeNumber;
    //...

   return Json(validationResult, JsonRequestBehavior.AllowGet)
}

答案 2 :(得分:0)

public JsonResult ActionName(string SomeNumber)
{...}

我认为您可能需要匹配输入参数的大小写。