我在我的项目路线中有一个验证控制器,我正在使用模型属性中的以下属性从一个区域内使用…
[Remote("IsValidUserName","Validation","",ErrorMessage = "Invalid username")]
但是当渲染时,验证是针对与页面相同的区域内的控制器“验证”的“IsValidUserName”操作,而不在根区域内
数据-VAL-远程URL = “/成员/验证/ IsValidUserName”
任何帮助将不胜感激。
谢谢。
解决方法
不幸的是,这个属性是如何实现的。这是这个属性的构造函数的摘录:
public RemoteAttribute(string action,string controller,string areaName) : this() { if (string.IsNullOrWhiteSpace(action)) { throw new ArgumentException(MvcResources.Common_NullOrEmpty,"action"); } if (string.IsNullOrWhiteSpace(controller)) { throw new ArgumentException(MvcResources.Common_NullOrEmpty,"controller"); } this.RouteData["controller"] = controller; this.RouteData["action"] = action; if (!string.IsNullOrWhiteSpace(areaName)) { this.RouteData["area"] = areaName; } }
请注意IsNullOrWhiteSpace针对areaName进行测试,最终会杀死所有内容?
public class MyRemoteAttribute : RemoteAttribute { public MyRemoteAttribute(string action,string area) : base(action,controller,area) { this.RouteData["area"] = area; } }
接着:
[MyRemote("IsValidUserName",ErrorMessage = "Invalid username")] public string Username { get; set; }
现在将生成正确的data-val-remote-url =“/ Validation / IsValidUserName”。