react({})是什么意思?
我看到它有时像这样使用:

export const Story = ({story}) => {}

我猜我们正在传递一个故事对象?

最佳答案

称为对象解构

这两个都是等效的

export const Story = (props) => {
  const { story } = props;
  return (
    <div>{story}</div>
  )
}


您也可以在函数参数中分解对象。

export const Story = ({ story }) => {
  return (
    <div>{story}</div>
  )
}

关于javascript - react({})是什么意思?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59241021/

10-13 04:40