摘要: 购物车框架效果图 # 1. Props 1.1 Props/列表渲染/条件渲染 什么是Props? 当React元素作为自定义组件,将JSX所接受的属性转换为单个对象传递给组件,这个对象被称为"Props" 父组件传给子组件参数对象(属性) Props是组件固有属性 子组件内部不可以对Props进行 阅读全文
posted @ 2021-10-06 18:35 TheYouth 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 通过这个小例子学习了react的哪些知识? 1. 钩子 useState 相当于state和setState ,写法 const [searchValue, setSearchValue] = useState(""), 2. 钩子 useReducer, 在 hooks 中提供了的 useRedu 阅读全文
posted @ 2021-10-06 11:59 TheYouth 阅读(74) 评论(0) 推荐(0) 编辑