November 12, 2020
js
性能
原生
Consolecopy12let x = {a:1,b:2,test:() =>{}}copy(x) //copy 所有属性,方法不支持到文本编辑器ctrl+v
console.dir
查看所有对象的属性和方法
1console.dir(x)
...
Read more
November 9, 2020
自动化测试
cypress
selenium
Cypress介绍
Cypress优点
1.随时可截屏 - Cypress captures snapshots at the time of test execution.
2.不需要编写等待命令 - One doesn’t need to add explicit or implicit ...
Read more
November 6, 2020
performance
性能优化
lighthouse
性能优化从js规范开始
1.命名通俗易懂,知名达意2.结构不要过深
拆分代码,避免过多深入调用,函数结构化,相关代码存放一起,把逻辑和该逻辑处理的数据放在相近的位置,往往同时修改,不会遗漏
3.扩展性强
代码随时可拓展,且 不影响相关调用代码,封装成接口便于调用
4.删除无用code5 ...
Read more
November 3, 2020
docker
CDN
CDN
CDN(content Distribute Network) 内容分发网络。
互联网是铁路轨道和信号系统,万维网则是在铁路上运行的列车之一。而在铁路上,除了万维网这个高速列车以外,还有慢车、通勤列车、货运列车和专业维修列车等.不使用WWW的应用同样运行在互联网上,互联网的巨大远 ...
Read more
November 3, 2020
ts
模块export default vs export
export default 只能出现一次,export not
export default ,xx 可以是{},function(){},and others
export ,xx可以是{}, const str = ...
Read more