gpt4 book ai didi

javascript - 不用导入 React 就可以使用 JSX

转载 作者:行者123 更新时间:2023-12-03 15:13:23 26 4
gpt4 key购买 nike

我正在尝试使用版本 4.0.0 的 create-react-app 运行我的第一个 React JSX 文件,它可以工作!但是,我的 JSX 中没有包含 React 的导入语句,它也可以工作,但是很奇怪。该项目由 create-react-app 命令创建,版本为 4.0.0。
App.js 文件:
/* 没有导入 React 但也可以! */

 import { Component } from "react";
class App extends Component {
render() {
return <div>456</div>;
}
}
export default App;

最佳答案

开始 react 17 无需导入 react 使用 JSX .请参阅博客文章中名为 Removing Unused React Imports 的部分中的相关内容。 :

Because the new JSX transform will automatically import the necessary react/jsx-runtime functions, React will no longer need to be in scope when you use JSX. This might lead to unused React imports in your code.


什么是 JSX 转换?

Browsers don’t understand JSX out of the box, so most React users rely on a compiler like Babel or TypeScript to transform JSX code into regular JavaScript.


建议阅读是 Introducing the New JSX Transform .你也可以看到 Using React 17 and the new JSX transform with Create React App 4.0 Alpha .

关于javascript - 不用导入 React 就可以使用 JSX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64541040/

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