이 글은 React BootStrap 사용자 경험 프레임워크를 빠르게 시작하기 위한 관련 지식을 주로 소개합니다. 매우 훌륭하고 참고할 만한 가치가 있습니다. 도움이 필요한 친구들이 참고할 수 있습니다.
공식 문서 http://react-bootstrap.github. io/getting-started.html
Installation
Cd를 터미널에서 프로젝트 디렉터리로 이동하고 다음을 실행합니다. $ npm install React-bootstrap
$ npm install react-bootstrap
然后需要我们手动引用css
<!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css">
但是我们在学习的时候使用外部的URL,太慢了。因此我们索引把bootstrap安装到本地。
$ npm install bootstrap
然后你会发现在你的node_modules目录下多了bootstrap。
这样页面上就可以引用本地的css了
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" >
好,我们动手来使用一下React-BootStrap框架吧
http://react-bootstrap.github.io/components.html
我们这里演示使用它的导航条组件
在index.js里:
const React = require("react"); const ReactDOM = require("react-dom"); import {Navbar} from "react-bootstrap"; const navbarInstance = ( <Navbar> <Navbar.Header> <Navbar.Brand> <a href="#" rel="external nofollow" >react-bootstrap</a> </Navbar.Brand> </Navbar.Header> </Navbar> ); // 然后我们渲染到body里 ReactDOM.render(navbarInstance,document.body);
html页面上:
es2105的写法 <link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="external nofollow" rel="external nofollow" >
效果如下:
主要看浏览器地址,这是我们前面配置的”热启动”。
执行命令 $ npm start
rrreee
그런데 학습할 때 외부 URL을 사용하면 너무 느립니다. 따라서 우리는 부트스트랩을 로컬로 설치합니다. $ npm install bootstrap
이런 식으로 페이지에서 로컬 CSS를 참조할 수 있습니다
rrreee
자, React-BootStrap 프레임워크를 사용해 보겠습니다
http://react-bootstrap.github. io/comComponents.html
여기에서는 탐색 모음 구성 요소의 사용을 보여줍니다
index.js에서:rrreee
🎜🎜html 페이지에서:🎜🎜rrreee🎜🎜🎜🎜🎜🎜효과는 다음과 같습니다.🎜
🎜🎜주로 앞서 구성한 "핫 스타트"인 브라우저 주소에 따라 다릅니다. 🎜🎜$ npm start
명령을 실행하여 서비스를 시작하세요🎜🎜위 내용은 제가 모두를 위해 정리한 내용입니다. 앞으로 모든 분들께 도움이 되길 바랍니다. 🎜🎜관련 기사: 🎜🎜🎜vue에서 v-for를 사용하여 2차원 배열 탐색🎜🎜🎜🎜🎜로컬 json 파일 데이터를 얻는 Vue-cli 프로젝트 인스턴스🎜🎜🎜🎜🎜JavaScript에서 import 및 require를 사용하여 패키징한 후 구현원리 분석🎜🎜🎜🎜🎜🎜🎜🎜🎜
위 내용은 React에서 BootStrap 사용자 경험 프레임워크 사용(자세한 튜토리얼)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!