ASP.NET MVC 是否内置了 Decimal 路由约束?
ASP.NET MVC 的核心库中是否有十进制路由约束?
我知道有正则表达式约束,但我想知道是否还有其他约束?
Does ASP.NET MVC have a decimal route constraint baked into the core library?
I know there's the Regex Constraint but I was wondering if there's any others?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道有什么,但编写你自己的确实很容易。您只需要实施
IRouteConstraint
,其中有一个Match
方法。 这里是一篇博客文章,详细解释了这一切。I'm not aware of any, but it would be really easy to write your own. You just need to implement
IRouteConstraint
, which has a singleMatch
method. Here is a blog post that explains it all in great detail.