加载中
14.React路由 react-router4.x的基本配置

exact表示严格匹配 跟组件 /* react路由的配置: 1、找到官方文档 https://reacttraining.com/react-router/web/example/basic 2、安装 cnpm install react-router-dom --save 3......

2019/01/15 10:14
129
13.React 生命周期函数

首页组件home.js /* react获取服务器APi接口的数据: react中没有提供专门的请求数据的模块。但是我们可以使用任何第三方请求数据模块实现请求数据 1、axios https://github.com/a......

2019/01/15 10:04
108
12.React 获取服务器数据 axios插件 fetch-jsonp插件的使用

首页组件 /* react获取服务器APi接口的数据: react中没有提供专门的请求数据的模块。但是我们可以使用任何第三方请求数据模块实现请求数据 1、axios https://github.com/axios/a......

2019/01/15 10:01
1.3K
10.React中的组件、父子组件、React props父组件给子组件传值、子组件给父组件传值、父组件中通过refs获取子组件属性和方法

新闻组件,首页组件是父组件 头部组件,底部组件是子组件 构造函数中固定写法 super(props); //固定写法 总结 React中的组件: 解决html 标签构建应用的不足。 使用组件的好处:把公共的功能单...

2019/01/13 23:28
1.6K
08.React实现Todolist练习 Todolist 待办事项 已经完成 (中)

完整代码 import React, {Component} from 'react'; import '../assets/css/index.css'; class Todolist extends Component { constructor(props) { super(props); this.state = ......

2019/01/13 22:39
1.2K

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部