博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
React router
阅读量:5315 次
发布时间:2019-06-14

本文共 1247 字,大约阅读时间需要 4 分钟。

1 import React from 'react'; 2 import ReactDOM from 'react-dom'; 3 import { Router, Route, hashHistory,browserHistory,IndexRoute,Link } from 'react-router'; 4  5  6 class App extends React.Component { 7   render () { 8     return ( 9       
10 app:{
this.props.children}11
    12
  • about
  • 13
  • report
  • 14
  • /report/15
  • 15 16
17 18
19 );20 }21 }22 class Report extends React.Component {23 render () {24 return (25
Report
26 );27 }28 }29 class About extends React.Component {30 render () {31 return (32
33 About {
this.props.location.query.id} params:{
this.props.params.id}34 {
/*about?id=3 得到地址栏参数 后一个得到这样: http://localhost:8888/build/test/router.htm#/about/15*/}35
36 );37 }38 }39 40 41 42 43 let rs=44
45
46
47
48
49
50
51
;52 53 ReactDOM.render(rs, document.getElementById('container'));

 

转载于:https://www.cnblogs.com/yuri2016/p/6078229.html

你可能感兴趣的文章
eclipse的调试方法的简单介绍
查看>>
加固linux
查看>>
IPSP问题
查看>>
10.17动手动脑
查看>>
WPF中Image显示本地图片
查看>>
Windows Phone 7你不知道的8件事
查看>>
实用拜占庭容错算法PBFT
查看>>
java的二叉树树一层层输出,Java构造二叉树、树形结构先序遍历、中序遍历、后序遍历...
查看>>
php仿阿里巴巴,php实现的仿阿里巴巴实现同类产品翻页
查看>>
Node 中异常收集与监控
查看>>
Excel-基本操作
查看>>
面对问题,如何去分析?(分析套路)
查看>>
Excel-逻辑函数
查看>>
面对问题,如何去分析?(日报问题)
查看>>
数据分析-业务知识
查看>>
nodejs vs python
查看>>
poj-1410 Intersection
查看>>
Java多线程基础(一)
查看>>
TCP粘包拆包问题
查看>>
Java中Runnable和Thread的区别
查看>>