2020年10月12日

用React 中的useState改变值不重新渲染的问题

摘要: 不渲染 const [lists,setLists] =useState([]); ..... const arr = lists; arr.splice(index,1) //根据删除index下标的这一项 setLists([arr]); //重复设置要改变数组的地址 解决办法: const [ 阅读全文

posted @ 2020-10-12 11:30 ranyonsue 阅读(6614) 评论(2) 推荐(1) 编辑

导航