我见过两种在 React 中解构 props 的方法。
function MyComponent({name,age,height}){
// do stuff here
}
或者
function MyComponent(props){
const {name,age,height} = props
// do stuff here
}
假设这个组件被用作
<MyComponent name="bob" age={25} height = {175} haspets={false}/>
这是我的问题:
如果我使用第一种解构方式,是否意味着我将无法访问其他专业人士,在这种情况下 haspets
这两种方式的优缺点是什么?