我想知道是否可以将参数传递给 react 入口点。
我的入口点是这样的:
module.exports = {
entry: "./js/components/Application.js",
output: {
path: "./dist",
filename: "bundle.js"
},
// ...
}
我的 Application.js:
import React from 'react';
import ReactDOM from 'react-dom';
import AnotherComponent from './AnotherComponent';
ReactDOM.render(<AnotherComponent />, document.getElementById('content'));
不是我将我的应用程序与 webpack 捆绑在一起,并将此捆绑包包含在另一个应用程序中。此应用程序提供了一个 ID 为“content”的 div:
<body>
<div id="content"></div>
<script src="bundle.js" />
</body>
我知道我可以做类似的事情
<script src="bundle.js" myargument="somevalue" />
但是我怎样才能得到这个值以将它AnotherComponent
作为属性传递给react组件?