前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >struts2 ognl 正则表达式-asp

struts2 ognl 正则表达式-asp

作者头像
囍楽云
发布2022-12-29 13:31:55
1K0
发布2022-12-29 13:31:55
举报
文章被收录于专栏:囍楽云博客

  本文介绍了asp.net mvc 4 中的 验证(正则表达式)-剃刀视图的处理方法struts2 ognl 正则表达式,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

  问题描述

  当在正则表达式中使用特殊字符时, 验证器在 asp.net mvc 4 razor 视图中不起作用.

  The not in asp.net mvc 4 razor view, when using the in the .

  型号:

   [StringLength(100)]

代码语言:javascript
复制
    [Display(Description = "First Name")]
    [RegularExpression("^([a-zA-Z0-9 .&'-]+)$", ErrorMessage = "Invalid First Name")]
    public string FirstName { get; set; }

  剃刀视图:

   @Html.TextBoxFor(model => Model.FirstName, new )

代码语言:javascript
复制
    @Html.ValidationMessageFor(model => Model.FirstName)

  不显眼的验证在视图中呈现为:

  The is in view as:

  上述html中的regex模式没有按照Model的中指定的方式呈现,导致即使输入有效数据(Sam's)也会出错.

  The regex in the above html is not as in the Model’s , which in error even when the valid data (Sam's).

  我该如何处理?

  –更新–

  我已经按照@Rick 的建议更新了代码

  I have the code as per @Rick

   [StringLength(100)]

代码语言:javascript
复制
    [Display(Description = "First Name")]
    [RegularExpression("([a-zA-Z0-9 .&'-]+)", ErrorMessage = "Enter only alphabets and numbers of First Name")]
    public string FirstName { get; set; }

  查看源代码显示以下内容:

  View Source shows the :

  我还是有同样的问题.

  推荐答案

  2012 年 7 月 9 日更新 – 看起来这已在 RTM 中修复.

  UPDATE 9 July 2012 – Looks like this is fixed in RTM.

  我们已经暗示了 ^ 和 $ 所以你不需要添加它们.(包含它们似乎没有问题struts2 ognl 正则表达式,但您不需要它们)这似乎是 ASP.NET MVC 4//Beta 中的一个错误.我打开了一个错误

  We imply ^ and $ so you don’t need to add them. (It doesn’t appear to be a to them, but you don’t need them)This to be a bug in ASP.NET MVC 4//Beta. I’ve opened a bug

  查看源码显示如下:

代码语言:javascript
复制
data-val-regex-pattern="([a-zA-Z0-9 .&'-]+)"                  
[1]: https://xuan.ddwoo.top/index.php/archives/540/                
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档