gpt4 book ai didi

reactjs - 如何在 react.js 中使用 bootstrap?

转载 作者:行者123 更新时间:2023-12-01 18:46:57 27 4
gpt4 key购买 nike

我使用 npm 在/node_modules/bootstrap 下下载了 bootstrap 依赖项。

我在 index.html 中添加了 CDN 链接。

我不能使用某些特定的标签,我不确定这些标签是否包含在 bootstrap 中。

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">

当我尝试将一些样式添加到我的应用程序中时,它变成了异常。

./src/App.js
Line 16: 'Grid' is not defined react/jsx-no-undef
Line 17: 'Row' is not defined react/jsx-no-undef
Line 18: 'Col' is not defined react/jsx-no-undef
Line 21: 'Col' is not defined react/jsx-no-undef
Line 26: 'Row' is not defined react/jsx-no-undef
Line 27: 'Col' is not defined react/jsx-no-undef
Line 30: 'Col' is not defined react/jsx-no-undef
Line 33: 'Col' is not defined react/jsx-no-undef
Line 38: 'Row' is not defined react/jsx-no-undef
Line 39: 'Col' is not defined react/jsx-no-undef
Line 44: 'Row' is not defined react/jsx-no-undef
Line 45: 'Col' is not defined react/jsx-no-undef
Line 48: 'Col' is not defined react/jsx-no-undef

Search for the keywords to learn more about each error.

这是我的 app.js 文件。

import React, { Component } from 'react';

class App extends Component {
render(){
return (
<Grid>
<Row className="show-grid">
<Col xs={12} md={8}>
<code>&lt;{'Col xs={12} md={8}'} /&gt;</code>
</Col>
<Col xs={6} md={4}>
<code>&lt;{'Col xs={6} md={4}'} /&gt;</code>
</Col>
</Row>

<Row className="show-grid">
<Col xs={6} md={4}>
<code>&lt;{'Col xs={6} md={4}'} /&gt;</code>
</Col>
<Col xs={6} md={4}>
<code>&lt;{'Col xs={6} md={4}'} /&gt;</code>
</Col>
<Col xsHidden md={4}>
<code>&lt;{'Col xsHidden md={4}'} /&gt;</code>
</Col>
</Row>

<Row className="show-grid">
<Col xs={6} xsOffset={6}>
<code>&lt;{'Col xs={6} xsOffset={6}'} /&gt;</code>
</Col>
</Row>

<Row className="show-grid">
<Col md={6} mdPush={6}>
<code>&lt;{'Col md={6} mdPush={6}'} /&gt;</code>
</Col>
<Col md={6} mdPull={6}>
<code>&lt;{'Col md={6} mdPull={6}'} /&gt;</code>
</Col>
</Row>
</Grid>
)
}
}

export default App;

为什么 grid、row 和 col 是 undef?我如何使用所有 Bootstrap 功能?

最佳答案

看起来 react 无法从 react-bootstrap 模块中找到元素。


如果你还没有安装react-bootstrap,那么使用这个命令来安装它。

npm install --save react react-dom
npm install --save react-bootstrap

然后将所需的组件导入到您的页面,如下所示。

import { Grid, Row, Col } from 'react-bootstrap';

关于reactjs - 如何在 react.js 中使用 bootstrap?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49104438/

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