javascript - react 配置的路由·不管用
为情所困
为情所困 2017-05-19 10:10:34
0
1
543

路由配置如下:
import React from 'react';
import ReactDom from 'react-dom';
import Index from './index';
import {Router,Route, hashHistory} from 'react-router';
import ComponentList from './components/list';

export default class Root extends React.Component{

render(){
    return (
        <Router history={hashHistory}>
            <Route component={Index} path="/" />
            <Route component={ComponentList} path="/list" />
        </Router>
    );
}

}

ReactDom.render(<Root/>,document.getElementById('example'));

用webpack-dev-server啟動項目,
輸入http://localhost:8080/#和http://localhost:8080/都顯示index,
輸入http://localhost:8080/ list提示Cannot GET /list,
http://localhost:8080/#/list也顯示index 就是不會顯示list 解? ? ? ? ? ?

为情所困
为情所困

全部回覆(1)
某草草

history改browserHistory

render(){
    return (
        <Router history={browserHistory}>
            <Route component={Index} path="/" />
            <Route component={ComponentList} path="/list" />
        </Router>
    );
}

然後看看你的ComponentList 這個寫的是否正確

import React from 'react'
export default class ComponentList extends React.Component {
    render() {
        return(
           // your code
        )
  }
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板