上一篇在配置好了webpack和react的环境后,接下来开始写登录界面,以及接下来的跳转到主页的功能。
1、首先看一下总体的目录结构。
因为很多时候在看别人写的例子的时候因为目录结构不熟悉后边会出现意想不到的岔子。
2、大体流程:
1)webpack配置入口文件src/index.js
2)运行index.html后首先加载入口文件src/index.js
3)加载路由表src/router/index.js
4)根据路由表中的配置会首先加载登录界面src/login.js
5)当在登录界面登录成功后跳转到src/components/myView.js
6)在myView文件中点击左侧菜单会分别显示指定页面(都是在路由表中配置)
3、写HTML文件。
其中,1)id为myContent处是为了放置我们写的组件。
2)script中加载的文件时webpack打包后的js文件。
1
2
3
4
|
< body > < div id = "myContent" ></ div > < script src = "./dist/bundle.js" ></ script > </ body > |
4、登录界面写在了login.js中
1)引入必要的模块:antd(Ant Design )是一个组件库,我们项目中使用的组件都来自它。(https://ant.design/index-cn)(不引入antd.css时,那么界面显示不出来样式)
1
2
3
4
5
6
7
|
import React from 'react' import {Form,Input,Icon, Button} from 'antd' // import {render} from 'react-dom' // import axios from 'axios' import '../node_modules/antd/dist/antd.css' //不引入这个文件那么不显示antd的样式 import './style/login.css' ; |
2)创建登录表单组件。除了基本的Form、Input、Button组件外,实现跳转功能的主要是history.push('/View');(其中,history = this.props.history;)push函数中的路径是路由表中配置的路径( ),二者要对应起来。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
class LoginFrom extends React.Component{ constructor(){ super () } handleSubmit = (e) => { //提交之前判断输入的字段是否有错误 e.preventDefault(); **let history = this .props.history;** this .props.form.validateFields((errors,values)=>{ if (!errors) { console.log( 'Received values of form: ' , values); **history.push( '/View' );** } }) } render(){ //Form.create 包装的组件会自带this.props.form属性,该属性提供了一系列API,包括以下4个 //getFieldDecorator用于和表单进行双向绑定 //isFieldTouched判断一个输入控件是否经历过 getFieldDecorator 的值收集时机 options.trigger(收集子节点的值的时机,默认时onChange) //getFieldError获取某个输入控件的 Error //获取一组输入控件的 Error ,如不传入参数,则获取全部组件的 Error const { getFieldDecorator, getFieldsError, getFieldError, isFieldTouched } = this .props.form; const userNameError = isFieldTouched( 'userName' ) && getFieldError( 'userName' ); const passWordError = isFieldTouched( 'password' ) && getFieldError( 'password' ); return ( <div className= "login" > <div className= "login-form" > <div className= "login-logo" > <div className= "login-name" >MSPA</div> </div> <Form onSubmit={ this .handleSubmit}> { /* 一个FromItem中放一个被 getFieldDecorator 装饰过的 child */ } <Form.Item validateStatus={userNameError ? 'error' : '' } //validateStatus为校验状态,如不设置,则会根据校验规则自动生成,可选:'success' 'warning' 'error' 'validating' > { getFieldDecorator( 'userName' ,{ rules:[{required: true ,message: "Please input your username!" }] })( <Input prefix={<Icon type= "user" style={{ color: 'rgba(0,0,0,.25)' }}/>} placeholder= "Username" /> ) } </Form.Item> <Form.Item validateStatus={passWordError ? "error" : '' } > { getFieldDecorator( 'passWord' ,{ rules:[{required: true ,message: "Please input your Password!" }] })( <Input prefix={<Icon type= "lock" style={{ color: 'rgba(0,0,0,.25)' }}/>} placeholder= "Password" /> ) } </Form.Item> <Form.Item> <Button type= "primary" htmlType= "submit" disabled={hasErrors(getFieldsError)} >登录 </Button> </Form.Item> </Form> </div> </div> ) } } let LoginForm = Form.create()(LoginFrom); export default LoginForm; |
3、在第二步中我们已经把静态页面写出来了,接下来就是配置路由表**了。**我们将路由信息都配置在了router文件夹下的index.js中。react-router中文文档(https://react-guide.github.io/react-router-cn/),其中history的简单介绍可以参考(http://www.zzvips.com/article/226381.html),比较容易快速理解。
代码如下:前三行中引入的模块是基本的模块,后边import的模块是写好的组件:首页显示login界面,登录成功后跳转到myView界面,myPicture和myDocument是在myView界面点击后所显示的组件。(嵌套路由)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import React from 'react' import {HashRouter as Router , Route , Switch} from 'react-router-dom' import { createBrowserHistory } from "history" ; import MyView from '../components/myView.js' import LoginModule from '../login.js' import MyPicture from '../components/myPicture' import MyDocument from '../components/myDocument.js' export default class MyRoute extends React.Component{ render(){ return ( <Router history={createBrowserHistory()}> <Switch> <Route exact path= "/" component={LoginModule}/> <MyView path= '/View' component={MyDocument}> <Route path= "/View/abc" component={MyDocument} /> <Route path= "/View/myPicture" component={MyPicture} /> </MyView> </Switch> </Router> ) } } |
4、接下来我们在src文件夹下的index.js(程序的入口文件)文件中写如下代码。
1
2
3
4
5
6
7
|
import MyRoute from './router/index.js' import {render} from 'react-dom' import React from 'react' render( <MyRoute />, document.getElementById( 'myContent' ) ); |
5、程序测试结果如下:
1)登录界面(login.js):
2)输入用户名和密码点击登录后的跳转界面(myView.js):
到此这篇关于React利用路由实现登录界面的跳转的文章就介绍到这了,更多相关React 路由实现登录跳转内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/weixin_39963132/article/details/84259801