douzhaocheng4533 2016-05-04 07: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 05: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;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部