viewmodel 中的 RemoteAttribute 和相应操作方法中的 ActionNameAttribute (MVC3)
我刚刚发现使用 RemoteAttribute 的远程验证将不起作用,除非:
- 远程验证的操作方法没有 [ActionName] 属性,或者
- 远程验证的操作方法有一个 [ActionName] 属性,该属性是一种情况 -与实际操作方法名称不敏感的匹配。
通过以下内容,MVC 抛出 InvalidOperationException“找不到远程验证的 url。”:
[ActionName("validate-my-widget")]
public virtual JsonResult ValidateMyWidget(string value1, string value2)
{
...
}
知道为什么吗?如果这有什么区别的话,我正在使用 T4MVC。
I just discovered that remote validation using the RemoteAttribute will not work unless either:
- The action method for the remote validation does not have an [ActionName] attribute, or
- The action method for the remote validation has an [ActionName] attribute that is a case-insensitive match for the actual action method name.
With the following, MVC throws an InvalidOperationException "No url for remote validation could be found.":
[ActionName("validate-my-widget")]
public virtual JsonResult ValidateMyWidget(string value1, string value2)
{
...
}
Any idea why? I am using T4MVC if that makes a difference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在
Remote
属性中提供的操作名称是什么?如果您提供操作方法的名称(而不是在
ActionName
属性中声明的名称),则VirtualPathProvider
将使用基础操作方法的名称生成 URL 。如果您提供 ActionName 属性中声明的名称,则将使用 ActionName 属性中声明的方法名称生成 URL。What is the action name which you are supplying in the
Remote
attribute?If you are supplying the name of your action method (as opposed to the name declared in the
ActionName
attribute), then theVirtualPathProvider
will generate a URL using the underlying action method's name. If you supply the name declared in the ActionName attribute, then the URL will be generated using the method name declared in the ActionName attribute.