路由配置如下:用webpack-dev-server启动项目,输入http://localhost:8080/#和http://localhost:8080/都显示index,输入http://localhost:8080/list提示Cannot GET /list,http://localhost:8080/#/list也显示index 就是不会显示list 求解??????
1 回答
心有法竹
TA贡献1866条经验 获得超5个赞
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
)
}
}
添加回答
举报
0/150
提交
取消