Vue开发小记 Posted on 2020-11-28 | Updated on 2021-04-15 | In work , study | comments: | Visitors: Words count in article: 204 | Reading time ≈ 1 怎么在v-html中使用filter 平时一般都是在插值表达式中用|隔开来使用filter过滤器,在工作中遇到过需求在v-html中使用filter 1v-html="$options.filters.filterName()" Vue路由参数改变,重新刷新页面的方法 遇到一个需求,列表页有一个 ... Read more »
关于Vue.js报错error:Unexpected console statement (no-console) Posted on 2020-02-07 | Updated on 2020-06-09 | In work , study | comments: | Visitors: Words count in article: 63 | Reading time ≈ 1 踩坑小记之vue语法检测其实报这个错误,是由于语法检查的问题,解决方法:关闭console的语法检测就OK;在项目的根目录下的package.json文件中的eslintConfig:{} 中的“rules”: {} 加入 “no-console”:“off” Read more »
对es6常用知识点的梳理 Posted on 2020-06-29 | Updated on 2020-07-12 | In work , study | comments: | Visitors: Words count in article: 2.5k | Reading time ≈ 11 解构赋值 对es6解构赋值知识点的梳理。 数组的解构赋值 数组的解构赋值,元素是按次序排列,变量的取值是由它的位置决定; 123456789101112131415161718192021222324// Before:let a = 1,let b = 2,let c = 3// Now:le ... Read more »
Lifestyles Posted on 2020-06-03 | Updated on 2020-06-09 | In life | comments: | Visitors: Words count in article: 113 | Reading time ≈ 1 阚,视也。 闲暇之余,提笔(键入)生活 孤独这两个字拆开来看,有孩童,有瓜果;有小犬,有蝴蝶;足以撑起一个盛夏傍晚间的巷子口,人情味十足。 很喜欢【夜色人生】里的一段台词“我知道我们生活的世界很堕落,但哪怕我呼吸着这腐败的空气,跟腐败的人并肩而行,我也是一个有原则的人。” Read more »
微信小程序一键复制 Posted on 2020-07-06 | Updated on 2020-07-07 | In work , study | comments: | Visitors: Words count in article: 66 | Reading time ≈ 1 微信小程序一键复制功能 记一下微信小程序一键复制功能,一键复制成功,可以实现粘贴 1234567891011copy:function(){ var _this = this; wx.setClipboardData({ data:_this.data.o ... Read more »
Nodejs | 知识点 Posted on 2019-10-04 | Updated on 2020-06-09 | In work , study | comments: | Visitors: Words count in article: 2.9k | Reading time ≈ 12 Node.jsNode.js是什么 Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行环境。 Node.js 使用了一个事件驱动、非阻塞式 I/O 的模型,使其轻量又高效。 为什么要学Node.js 了解前后端交互流程 能够写api接口 了解后端开发的工作,方便 ... Read more »
在Vue项目中使用tinymce富文本 Posted on 2020-03-09 | Updated on 2020-06-09 | In work , study | comments: | Visitors: Words count in article: 292 | Reading time ≈ 1 安装1npm install @tinymce/tinymce-vue 引用123456789101112131415161718192021222324252627282930313233343536373839404142434445//htlm部分<div class='tinymce ... Read more »
Nginx服务器常用配置及命令 Posted on 2020-07-28 | Updated on 2020-07-31 | In work , study | comments: | Visitors: Words count in article: 129 | Reading time ≈ 1 nginx常用指令12345678// 启动start nginx// 重新载入配置文件nginx -s stop// 停止nginx -s reload 用nginx反向代理解决跨域123456789101112131415server { listen 80 ... Read more »
git | nodeJs | gulp | requireJs Posted on 2018-09-24 | Updated on 2020-06-09 | In work , study | comments: | Visitors: Words count in article: 1.3k | Reading time ≈ 5 GIT全局配置用户名和邮箱12git config --global user.name '平台设置用户名'git config --global user.email '平台绑定邮箱名' 配置密钥对1ssh-keygen 查看git公钥1231.cd ~/.ssh2.ls3.cat id_rs ... Read more »
有关es5|es6小记 Posted on 2018-09-24 | Updated on 2020-06-09 | In work , study | comments: | Visitors: Words count in article: 7.1k | Reading time ≈ 29 正则表达式应用对象:文本 使用正则表达式可以指定想要匹配的字符串规则,然后通过这个规则来匹配、查找、替换或切割那些符合指定规则的文本。 正则表达式的==标识符==: / / PS: “ “ 是 字符串str 的标识符、[ ] 是 数组arr 的标识符、{ } 是 对象obj 的标识符。 m ... Read more »