02 2022 档案
摘要:js - clone 浅拷贝 深拷贝 浅拷贝 浅拷贝,指的是创建新的数据,这个数据有着原始数据属性值的一份精确拷贝 基本类型,拷贝的就是基本类型的值。 引用类型,拷贝的就是内存地址 即浅拷贝是拷贝一层,深层次的引用类型则共享内存地址 简单实现浅拷贝 function shallowClone(obj
阅读全文
摘要:el-table 动态自适应宽度 v-fit-columns A Vue.js plugin that auto fits Element UI's el-table-column with cell content. Vue.js 插件,可实现 Element UI el-table-column
阅读全文
摘要:js - 多层嵌套Object或Array快速判断undefined并选取 ?. 嵌套Object连续判断并选取子对象 a.b.c.d.e.f.g. ... 应用 获取 g 值 对 g 进行操作(赋值,遍历……) 传统方式 var obj={a:'test'} console.log(obj.a&&
阅读全文
摘要:error - webpack - Cannot use [chunkhash] for chunk ERROR in chunk runtime [entry] [name].[chunkhash].js Cannot use [chunkhash] for chunk in '[name].[c
阅读全文
摘要:git - push 超过100M error remote: error: File: 526332dfc405e0709507c5d986b51ba0cf90f1d0 118.75 MB, exceeds 100.00 MB. remote: Use command below to see t
阅读全文
摘要:css - position:sticky失效原因及注意点 粘性定位:粘性定位可以被认为是相对定位和固定定位的混合,元素在跨越特定阈值前为相对定位,之后为固定定位 #one { position: sticky; top: 10px; } 在 viewport 视口滚动到元素 top 距离小于 10
阅读全文
摘要:笔记本关闭触控板 外置鼠标时自动关闭触摸板 我的电脑 -设置-触摸板-其他设置-ELAN(这个好像是要装驱动的,网上搜一下就有了)-勾选插入外置USB指向装置时禁用。 快捷键 hasee fn + f1
阅读全文
摘要:error - vue mock 请求403 问题 mock http // 查询批量操作按钮 { url: '/creditcard-bank/basic/\.*/buttons', type: 'post', response: (config) => { let { pageNum, page
阅读全文
摘要:chrome - extensions - 实用扩展程序 访问助手 谷歌访问助手 GG谷歌访问助手 PP谷歌访问助手 开发 GitCodeTree gitlab tree FeHelper(前端助手) Vue Vue.js devtools Vue Performance Devtool React
阅读全文
摘要:mock - 代理切换mockapi与接口api 目的 通过修改 axios baseURL 切换mockapi与接口api devServer: { port: 8092, //端口 before:require('./mock/mock-server.js'), proxy: { '^/dev-
阅读全文
摘要:js - deepClone deepClone /** * This is just a simple version of deep copy * Has a lot of edge cases bug * If you want to use a perfect deep copy, use
阅读全文
摘要:js - 对象递归合并merge deepAssign、merge function isObject(obj) { return Object.prototype.toString.call(obj) '[object Object]' } function isArray(arr) { retu
阅读全文
摘要:error - momentjs - Deprecation warning: value provided is not in a recognized RFC2822 or ISO format 问题 Deprecation warning: value provided is not in a
阅读全文