我正在向我现有的 html 页面添加 react。按照此处 enter link description here 的说明进行操作。 然后这工作得很好,直到我导入一个不同的组件。
我的 html 代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test2</title>
</head>
<body>
<h1>Hello World</h1>
<div id="like_button_container"></div>
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@17/umd/react.development.js" crossorigin>.
</script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"
crossorigin></script>
<!-- Load our React component. -->
<script src="like_button.js"></script>
</body>
</html>
我的 like_button.js 代码:
'use strict';
import Another from "./another.js"; //problem here, if you comment this line, it works.
const e = React.createElement;
class LikeButton extends React.Component {
constructor(props) {
super(props);
this.state = { liked: false };
}
render() {
if (this.state.liked) {
return 'You liked this.';
}
return e(
'button',
{ onClick: () => this.setState({ liked: true }) },
'Like'
);
}
}
const domContainer = document.querySelector('#like_button_container');
ReactDOM.render(e(LikeButton), domContainer);
和我的 another.js 代码:
'use strict';
const e = React.createElement;
class Another extends React.Component {
constructor(props) {
super(props);
this.state = { liked: false };
}
render() {
if (this.state.liked) {
return 'You liked this (another).';
}
return e(
'button',
{ onClick: () => this.setState({ liked: true }) },
'Like'
);
}
}
export default Another;
感谢您的回答。
编辑: 我在 package.json 文件中添加了 "type": "module"。最新情况如下;
{
"name": "test2",
"version": "1.0.0",
"description": "",
"main": "another.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module"
}
但它仍然不起作用,我在控制台中收到同样的错误。
编辑2: 解决问题。仅在 package.json 中添加 ("type": "module") 还不够,我还必须将 (type="module") 添加到 html 文件中的脚本标记中。
答案 0 :(得分:2)
您需要告诉节点您要使用 ESmodule
功能,例如 import
和 export
关键字。
为此,请将这一行添加到您的 package.json
文件中。
"type": "module"
指定类型的示例 package.json
文件。
{
"name": "pup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module"
}
您还需要将 type="module"
添加到您在 index.html
中导入文件的脚本标记。
<script src="like_button.js" type="module"></script>
这将停止您遇到的错误。