摘要: 场景:往tempListExtra塞入数据,返回过滤后的数组。 const arr = [...tempListExtra, ...extraOpt]; const set = new Set(); const duplication = arr.filter((item: any) => { if 阅读全文
posted @ 2023-03-11 22:10 被咯苏州 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 有两种方式可以定义路由:传递React Elements<Home />或传递React ComponentHome。但是如果它们同时存在,则以React Component优先。 缺点: 通过React Component方式定义无法传递props,可以考虑使用全局状态管理。 const elem 阅读全文
posted @ 2023-03-11 21:42 被咯苏州 阅读(148) 评论(0) 推荐(0) 编辑