gpt4 book ai didi

javascript - react native | : <> 这是什么意思

转载 作者:行者123 更新时间:2023-12-02 07:16:38 26 4
gpt4 key购买 nike

我在 React Native 0.62 数据中看到了什么?如果我删除,我看不到效果。

const App = () => {
return (
<> <-here
</> <-here
);
};

最佳答案

这是short syntax for a React fragment .

JSX 只能返回一个“东西”,因此:

return (
<div>Hello</div>
<div>World</div>
);

...无效。

片段允许对这些元素进行分组。

return (
<>
<div>Hello</div>
<div>World</div>
</>
);

关于javascript - react native | : <> </> 这是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61433183/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com