gpt4 book ai didi

javascript - React JS 未捕获引用错误 : require is not defined

转载 作者:行者123 更新时间:2023-11-29 20:57:42 25 4
gpt4 key购买 nike

我目前正在尝试让 React 通过 CDN 工作。

当我手动运行 index.html 文件时,它起作用了。但是当我将我的文件放到像 XAMPP 这样的 Web 服务器上时,我遇到了

未捕获的 ReferenceError:未定义要求

index.html:

<html>
<head>
<title>TestApp</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.2.0/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.2.0/umd/react-dom.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js"></script>
<script src="./node_modules/moment/moment.js"></script>
</head>
<body>
<div id="app"></div>
<script type="text/babel" src="./react.js"></script>
</body>
</html>

react .js:

const Aest = ({test}) =>  {
return (
<div>WATss {test}</div>
)
}
class Test extends React.Component{
constructor(){
super()
this.state={
test: 0
}
}
inc(){
this.setState({
test: ++this.state.test
})
}
render(){
return(
<React.Fragment>
<div>test: {this.state.test}</div>
<button onClick={()=>this.inc()}>Add</button>
<Aest test={this.state.test}/>
</React.Fragment>
)
}
}
ReactDOM.render(<Test />,document.getElementById('app'));

最佳答案

require 在某些网络服务器中默认不被理解,以允许它首先被识别。使用 需要 js。 npm 安装它。并导入它。

关于javascript - React JS 未捕获引用错误 : require is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48413922/

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