douzhaocheng4533 2016-05-04 15:37
浏览 37
已采纳

使用XRegExp进行Yii2验证,\ p {L}无效

I'm using Yii2 framework and I have a Validator that should do client-side validation. I have a regex that looks like this: /^[\\p{L}]+$/u for simplicity, but my actual regex is a bit more complicated, but the \p{L} part is what causes the problems.

And so my code like this in the validator class:

public function clientValidateAttribute($model, $attribute, $view)
{
    $message = json_encode($this->message, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);
    return <<<JS
    if (!XRegExp('/^[\\p{L}]+$/u').test(value)) {
        messages.push($message);
    }
JS;
}

Problem is, this always fails for \p{L} but if I change the pattern for something like /^[A-Z]+$/ it works flawlessly.

I'm using the 1.3.0 xregexp-all.js. It is added to in an AssetBundle class in \assets\AppAsset.php

  • 写回答

1条回答 默认 最新

  • dongshu4755 2016-05-05 13:33
    关注

    I did notice while I was playing around with my regex, that when I made it wrong and was shown an exception, \\p{L} was interpreted as p{L}. So after some tries I've found out that for whatever reason I needed four backslashes to get it interpreted as \p{L}. Final code that works:

    public function clientValidateAttribute($model, $attribute, $view)
    {
        $message = json_encode($this->message, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);
        return <<<JS
        if(!XRegExp('^[\\\\p{L}]+$').test(value)) {
            messages.push($message);
        }
    JS;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上