如何配置 RemoveAttribute 以使用这样的路由?
context.MapExtendedRoute("ValidateSomething",
"some-where/validate/{propName}",
new { Controller = "SomeWhere", Action = "ValidateSomeRouteKey" });
当我将上述路由名称传递给 RemoteAttribute 构造函数时,InvalidOperationException
会发生一个。但是当没有propName
路由定义和作为查询字符串传递的参数时,它就像一个魅力。
提前致谢;)