gpt4 book ai didi

reactjs - ReactDOM 没有将 React 组件渲染为 HTML

转载 作者:行者123 更新时间:2023-12-03 09:09:17 24 4
gpt4 key购买 nike

我一直在遵循 React 指南,该指南介绍了在我的存储库中设置 webpack 和 babel 的过程。我创建了一个 React 元素,它将简单地打印出“Hello World”,然后我使用 ReactDOM.render 方法将此元素添加到 index.html 文件中,但由于某种原因,它没有被添加到其中。

这是我的 Index.js 文件:

import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';

export default class App extends React.component {
render() {
return(
<div>
Hello World
</div>
)
}
};
//////EDITED OUT <button /> for <App />
ReactDOM.render(<App />, document.getElementById("root"))

我的index.html文件:

<!DOCTYPE html>
<div id="root"></div>

我的 webpack.config.js 文件

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
entry: "./App/index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bundle.js"
},
module: {
loaders: [
{
test: /\.(js)$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
{ test: /\.css$/, use: [ 'style-loader', 'css-loader' ]}
]
},
plugins: [
new HtmlWebpackPlugin({
template: 'App/index.html'
})
]
}

我的index.css:

body {
background: red;
}

我的 .babelrc 文件

{
"presets": ["es2015", "react"]
}

我检查了浏览器上的开发控制台,它根本没有显示 index.html 文件中组件内包含的组件。 ReactDOM 是否需要额外的东西才能将我的 React 元素推送到 DOM 中?

我在堆栈上查看了其他类似的问题,但由于拼写错误,他们的问题最终存在,我睁大眼睛检查我的代码,但找不到任何拼写错误。我认为我可能跳过了安装中的一个步骤。

最佳答案

您需要渲染<App />不是<button />

import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';

export default class App extends React.component {
render() {
return(
<div>
Hello World
</div>
)
}
};
document.createelement("LI").appendChild(document.createTextNode("Water"));
ReactDOM.render(<App />, document.getElementById("root"))

您还需要输出

/dist/bundle.js

index.html

像这样

<!DOCTYPE html>
<div id="root"></div>
<script src="/dist/bundle.js"></script>

关于reactjs - ReactDOM 没有将 React 组件渲染为 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44247226/

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