07 2020 档案
摘要:身为WEBer,chrome和vscode就像老婆和车子,天天要用,但是卡起来就像老婆耍脾气一样,很头大,需要治一治, 下面对症下药: 一.谷歌浏览器运行内存太大 解决:设置-高级-最底部 取消勾选。 2.添加书签释放内存 添加一个书签(ctrl+D),网址设为 chrome://restart 即
阅读全文
摘要:设置position:fiexd之后 不设置top,bottom,left,right位置样式, 通过margin间接调整 复制代码就是开干 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" cont
阅读全文
摘要:先初始化各种依赖包,可选,不需要的删除 npm install react-router react-router-dom less less-loader antd react-redux --save 一般 import 'antd/dist/antd.css' 引入 antd高级引入-按需加载
阅读全文
摘要:npm install -g create-react-app create-react-app APP cd APP npm run start 这就跑起来了
阅读全文
摘要:node命令报错,权限不够 解决: 打开Windos PowerShell 并且以右键管理员身份运行 2.输入set-ExecutionPolicy RemoteSigned, 并且把权限改权限为A 再次运行就ok
阅读全文
摘要:css3之前使用js实现 <div style="padding: 0 1rem;"> <div id="container_small_tip"> <div id="content_small_tip"></div> </div> </div> <script> function roll(spe
阅读全文
摘要:添加 value-format="yyyy-MM-dd" 解决 <el-date-picker style="width:240px" v-model="item.dateName" type="date" value-format="yyyy-MM-dd" placeholder="选择日期" >
阅读全文
摘要:scope.$index <el-table-column label="序号" align="center" width="80" > <template slot-scope="scope"> <div :class="listBgColor[scope.$index+1+myIndex]">
阅读全文
摘要:原理 浏览器端: 动态生成<script>来请求后台接口(src就是接口的url) 定义好用于接收响应数据的函数(fun), 并将函数名通过请求参数提交给后台(如: callback=fun) 服务器端: 接收到请求处理产生结果数据后, 返回一个函数调用的js代码, 并将结果数据作为实参传入函数调用
阅读全文
摘要:作用: 简化promise对象的使用: 不用再使用then()来指定成功/失败的回调函数 以同步编码(没有回调函数了)方式实现异步流程 哪里写await? 在返回promise的表达式左侧写await: 不想要promise, 想要promise异步执行的成功的value数据 哪里写async? a
阅读全文
摘要:一. 创建远程仓库 二. 创建本地仓库 a. 配置.gitignore b. git init c. git add . d. git commit -m "备注" 三. 将本地仓库推送到远程仓库 git remote add origin url git push origin master 四.
阅读全文
摘要:1.字符串通过 this.refs.test 来引用真实dom的节点dom 节点上使用 <input type ="text" ref="test"/> 2.回调函数回调函数就是在dom节点或组件上挂载函数,函数的入参是dom节点或组件实例,达到的效果与字符串形式是一样的,都是获取其引用。 <inp
阅读全文
摘要:由于后台返回文字过长,所有文字显示不够, 会导致部分项隐藏, 限定宽度,设置过长的换行,轻松解决 xAxis: { type: "category", boundaryGap: false, axisTick: { show: false }, axisLine: { lineStyle: { co
阅读全文
摘要:// 两个纵坐标 yAxis: [ { type: "value", axisTick: { show: false }, axisLine: { lineStyle: { color: "rgba(228,231,237,1)", } }, axisLabel: { color:"rgba(95,
阅读全文
摘要:formatter: function(params) { console.log("eeessss") console.log(params) var result = "<div>" + params[0].axisValue + "</div>"; params.forEach(functio
阅读全文