所以我面临的问题是,我创建的 Remote 属性仅在其声明的字段更改时触发。但我需要它在任何一个发生变化时触发。
class MyViewModel
[Remote("ValidateTwoFields", "ControllerName", AdditionalFields = "Field2", ErrorMessageResourceName = "Errors_SomeErrorMessageThatShouldBeShowOnce", ErrorMessageResourceType = typeof(Resources.Resource))]
public string Field1{ get; set; }
public string Field2{ get; set; }
在 Controller 中:
//this only gets called when Field1 changes
//If I put the remote attribute on Field2 as well it displays the error message twice
public JsonResult ValidateTwoFields(MyViewModel model)
{
}
我还没有尝试过,但是是否可以通过将两个字段合并到一个包含两个字符串的类中并在一个类上添加验证来解决这个问题?
我是一名优秀的程序员,十分优秀!