gpt4 book ai didi

javascript - React Bootstrap 无法呈现

转载 作者:数据小太阳 更新时间:2023-10-29 04:08:54 25 4
gpt4 key购买 nike

我刚刚安装了 React Bootstrap 并开始学习使用它

我开始在 http://react-bootstrap.github.io/components.html 上做教程

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Demo</title>
<link rel="stylesheet" href="bootstrap-3.3.5-dist/css/bootstrap.min.css"/>
<script src="js/react-0.13.3/build/react.min.js"></script>
<script src="js/react-bootstrap.min.js"></script>
<script src="js/react-0.13.3/build/JSXTransformer.js"></script>
<script src="js/jquery-2.1.4.min.js"></script>
<script src="demo_bootstrap_react.js" type="text/jsx"></script>
</head>
<body>
<div id="test"></div>
</body>
</html>

然后我复制了React Bootstrap Button的全部教程,像这样:

const buttonsInstance = (
<ButtonToolbar>
{/* Standard button */}
<Button>Default</Button>

{/* Provides extra visual weight and identifies the primary action in a set of buttons */}
<Button bsStyle="primary">Primary</Button>

{/* Indicates a successful or positive action */}
<Button bsStyle="success">Success</Button>

{/* Contextual button for informational alert messages */}
<Button bsStyle="info">Info</Button>

{/* Indicates caution should be taken with this action */}
<Button bsStyle="warning">Warning</Button>

{/* Indicates a dangerous or potentially negative action */}
<Button bsStyle="danger">Danger</Button>

{/* Deemphasize a button by making it look like a link while maintaining button behavior */}
<Button bsStyle="link">Link</Button>
</ButtonToolbar>
);

ReactDOM.render(buttonsInstance, mountNode);

我不知道这是怎么回事。没有渲染。我做错了什么吗?我下载了 React Bootstrap 并将其包含在 HTML 文件中。这是不可能的!

最佳答案

由于您在没有 CommonJS 或 AMD 的情况下加载分发包,因此您需要访问所有组件的全局 ReactBootstrap。

因此将您的示例代码更改为:

const buttonsInstance = (
<ReactBootstrap.ButtonToolbar>
{/* Standard button */}
<ReactBootstrap.Button>Default</ReactBootstrap.Button>

{/* Provides extra visual weight and identifies the primary action in a set of buttons */}
<ReactBootstrap.Button bsStyle="primary">Primary</ReactBootstrap.Button>

{/* Indicates a successful or positive action */}
<ReactBootstrap.Button bsStyle="success">Success</ReactBootstrap.Button>

{/* Contextual button for informational alert messages */}
<ReactBootstrap.Button bsStyle="info">Info</ReactBootstrap.Button>

{/* Indicates caution should be taken with this action */}
<ReactBootstrap.Button bsStyle="warning">Warning</ReactBootstrap.Button>

{/* Indicates a dangerous or potentially negative action */}
<ReactBootstrap.Button bsStyle="danger">Danger</ReactBootstrap.Button>

{/* Deemphasize a button by making it look like a link while maintaining button behavior */}
<ReactBootstrap.Button bsStyle="link">Link</ReactBootstrap.Button>
</ReactBootstrap.ButtonToolbar>
);

ReactDOM.render(buttonsInstance, mountNode);

关于javascript - React Bootstrap 无法呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33012499/

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