//这是greet.js文件
import React from "react";
function Greet()
{
return (
<div><h1>欢迎</h1></div>
)
}
export default Greet
//这是indx.js文件
import React,{Component} from 'react'
import Greet from './Greet'
class App extends Component
{
render()
{
<div className='App'>
<Greet/>
</div>
}
}
//这是html文件
<!DOCTYPE html>
<html>
<head>
<title>
Here We Go
</title>
</head>
<body>
<script src="indx.js"> </script>
</body>
</html>
我正在尝试从greet.js中获取数据并在indx.js中渲染,但是我得到了无法在模块外使用import语句的错误
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
script标签中添加type='module'来使用import/export语法babel、esbuild或者其他你喜欢的编译器,或者直接在 HTML 中输入babel来使用。你也可以使用vite