I've got a pretty standard setup, a router with pages:
import React from "react";
import ReactDOM from "react-dom";
import { IndexRoute, Router, Route, Link, hashHistory as history } from "react-router";
import Layout from "./pages/Layout";
...
import User from "./pages/User";
ReactDOM.render(
<Router history={history}>
<Route path="/" component={Layout}>
<IndexRoute component={...}/>
<Route path="project/create" component={...}/>
<Route path="project/:id" component={...}/>
<Route path="user/:id" component={User}/>
<Route path="*" component={...}/>
</Route>
</Router>,
document.getElementById("app-root"));
Everything is working perfectly except when I go to a page like site.tld/#/user/5
. The User
component has some trouble getting instantiated properly. All other pages are working, I also have another page that uses url parameters (project/:id
) and it is working fine as well.
import React from "react";
...
export default class User extends React.Component {
constructor() {
super();
console.log(this);
...
}
render() {
return ...
}
This is what I get in the console.
I'm sure it's the dumbest thing ever again, but I can't pick it out...
question from:
https://stackoverflow.com/questions/42858542/react-this-props-is-undefined 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…