js
qq_35483460
我是一个小前端
展开
-
2021-06-28
js字符串长度计算(一个汉字==两个字符)和字符串截取 js字符串长度计算(一个汉字==两个字符)和字符串截取 String.prototype.realLength = function() { return this.replace(/[^\x00-\xff]/g, "**").length; // [^\x00-\xff] - 匹配非双字节的字符 };String.prototy转载 2021-06-28 11:44:05 · 80 阅读 · 0 评论 -
vue prerender-spa-plugin 预渲染解决seo问题
//vue.config.jsconst path = require('path');const PrerenderSPAPlugin = require('prerender-spa-plugin');const Renderer = PrerenderSPAPlugin.PuppeteerRenderer; configureWebpack: config => { if (process.env.NODE_ENV === 'production') { conso转载 2021-04-20 15:15:41 · 286 阅读 · 0 评论 -
Vue UI框架对比:Element UI、Ant Design Vue、iView
转载:https://www.cnblogs.com/niejunchan/p/12866424.html Vue UI框架对比:Element UI、Ant Design Vue、iView </h1> <div class="clear"></div> <div class="postBody"> 本篇文章将..转载 2020-12-11 17:39:39 · 3366 阅读 · 0 评论 -
JS 正则表达式
目录 引言 第一章 正则表达式字符匹配攻略 1 两种模糊匹配 2. 字符组 3. 量词 4. 多选分支 5. 案例分析 第1章 小结 第二章 正则表达式位置匹配攻略 1. 什么是位置呢? 2. 如何匹配位置呢? 3. 位置的特性 4. 相关案例 第二章小结 第三章 正则表达式括号的作用 1. 分组和分支结构 2. 引用分组 3. 反向引用 4. 非捕获分组 5. 相关案例 ...转载 2020-12-11 15:56:18 · 189 阅读 · 1 评论