摘要:
React中嵌套路由 一、精准匹配和模糊匹配 (1)、模糊匹配: // 路由跳转 <MyNavLink to="/home/a/b">Home</MyNavLink> // 注册路由 <Route path="/home" component={Home}/> 点击侧边栏,跳转到 localhost 阅读全文
摘要:
React中网络请求接口API axios请求: getStudentData = () => { axios.get('http://localhost:3000/api1/students').then( response => {console.log('成功了', response.data 阅读全文
摘要:
记录-form提交的bug 先展示最后的jsx代码: render() { return ( <form action="http://www.atguigu.com" onSubmit={this.handleSubmit}> 用户名:<input ref={c => this.username 阅读全文
摘要:
记录Bug——因路由导致的样式丢失问题 问题展示: <div className="row"> <div className="col-xs-2 col-xs-offset-2"> <div className="list-group"> <MyNavLink to="/gogocj/about"> 阅读全文
摘要:
组件实例三大属性 一、三大属性之一:state 1、在构造器中初始化state 默认状态下React.Components会给我们定义构造器(类似于无参构造函数一样),但是默认是把state设置为null的,那么如果我们要自定义初始化的state的话,那么我们就要像(有参构造函数一样)自定义构造函数 阅读全文