06 2020 档案
摘要:TCP三次握手: https://www.cnblogs.com/mzsh95/p/10688345.html 客户端 服务端 请求连接 > < 同意连接 确认连接 > 已建立连接<> >已建立连接 TCP和HTTP: https://www.cnblogs.com/mzsh95/p/1069738
阅读全文
摘要:面试 >https://www.cnblogs.com/DCL1314/p/10393128.html JS基础 >https://www.cnblogs.com/DCL1314/p/10393121.html
阅读全文
摘要:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Functions/Arrow_functions 1. ()=>{c} 无参数return c a=>{c} 一个参数a return c (a,b)=>{c} 两个
阅读全文
摘要:可以看出map >它们只是对当前元素调用函数后(x是否大于1)的结果; filter >而filter 会将结果为true的数组存到新的数组里面。 *********************************** 另外两个常用于遍历的函数,forEach/reduce forEach==>fo
阅读全文
摘要:node-sass==>npm config set sass-binary-site http://npm.taobao.org/mirrors/node-sass
阅读全文
摘要:一.vue绑定内联样式: 字符串/对象/数组 1.字符串的方式: <p :style="`background:url(${imgUrl}) no-repeat center`"> 2.对象的方式: <p :style="{background:'url('+ imgUrl +') no-repea
阅读全文