摘要:
useContext:主要用于解决组件间跨层级的状态共享问题。它允许组件树中的任何组件直接访问全局状态,而无需通过每层手动传递props。这适用于全局状态管理,如用户认证信息、主题设置等; useContext通过context的API创建的,在上层组件中使用Provider来包裹状态,并在需要 阅读全文
摘要:
for in 和for of的区别 for in 适用于可枚举属性,例如 对象、数组、字符串 for of 适用于可迭代对象,像Array、String for in 能遍历自身的可枚举属性 && 原型上的可枚举属性 for of 一般只能遍历自身的可枚举属性 for in 得到的是key for 阅读全文
摘要:
normalStateList= res.data.content.normalState //normalStateList自定义的数组从接口中取返回值 const data = normalStateList for (let i = 0; i < data.length; i++) { con 阅读全文
摘要:
//数据 const data = [10,20,30,40,50,40,30,20] const mean = data.reduce((a: any, b: any) => a + b) / data.length //平均数,data的数据和除以data的长度 const variance = 阅读全文
摘要:
const distinct = (arr, key) => { for (let i = 0; i < arr.length; i++) { for (let j = i + 1; j < arr.length; j++) { if (arr[i][key] arr[j][key]) { arr. 阅读全文
摘要:
let currentDate = new Date(); // 获取当前日期 let currentMonth = currentDate.getMonth(); // 获取当前月份(从0开始) let currentYear = currentDate.getFullYear(); // 获取当 阅读全文
摘要:
let currentDate = new Date(); // 创建一个表示当前日期的Date对象 // 将日期设置为当月的第一天 currentDate.setDate(1); let mondays = []; // 存放本月的周一数组 while (currentDate.getDay() 阅读全文
摘要:
get请求不会修改服务器资源,常用于获取资源;post会修改服务器资源 浏览器会对get请求做缓存,post很少做缓存 get请求会在地址栏显示参数,post不显示 get请求对url有限制,post没有(url在请求体内,所以没限制) get不可以发送文件,图片,post可以 get只发送一次请求 阅读全文
摘要:
<el-upload class="upload-demo" action accept=".mp4" :show-file-list="true" :auto-upload="false" :on-change="fileChange" :file-list="fileList"> <el-but 阅读全文