vue身份证号脱敏显示
vue想要对身份证进行展示,但是又不想对其年月日部分进行展示,可以尝试是使用正则的方法进行脱敏处理。if(this.ownerVo.ownerCard.length >= 10){let str = this.ownerVo.ownerCardstr = str.replace(/(\w{6})\w*(\w{4})/,'$1******$2');this.ownerVo.ownerCard
·
vue想要对身份证进行展示,但是又不想对其年月日部分进行展示,可以尝试是使用正则的方法进行脱敏处理。
if(this.ownerVo.ownerCard.length >= 10){
let str = this.ownerVo.ownerCard
str = str.replace(/(\w{6})\w*(\w{4})/,'$1******$2');
this.ownerVo.ownerCard = str
}
效果图如下:
更多推荐
已为社区贡献6条内容
所有评论(0)