0
に空になっているこれは私のルーターの定義です:小道具が反応ルートを
import BugsOverview from './BugsOverview';
import BugDetail from './BugDetail';
import './index.css';
import { Router, Route, browserHistory } from 'react-router'
ReactDOM.render(
<Router history={browserHistory}>
<Route path="/" component={Login} />
<Route path="/login" component={Login} />
<Route path="/bugs-overview" component={Bugs} />
<Route path="/bugs-overview/:bugID" component={BugsDetails} />
<Route path="/logout" component={Logout} />
</Router>,
document.getElementById('root')
);
var BugsDetails = React.createClass({
render: function() {
return (<div>
<h1>Bug Detail</h1>
<BugDetail />
</div>
);
}
});
そして、これは私のBugDetailコンポーネントです:
import React, { Component } from 'react';
import './App.css';
import { browserHistory, Router } from 'react-router';
class BugDetail extends React.Component {
constructor(props, ctx) {
super(props);
console.log(props);// -->> {}
console.log(props.route);// -->> undefined
console.log(props.params);// -->> undefined
console.log(ctx);// -->> {}
this.state = {
un: "un",
pw: "pw"
};
}
getBugID(){
return (
<span> {this.props.params.bugID} </span>
)
}
render() {
return (
<div className="App">
Detail voor bug met id {this.getBugID()}
</div>
);
}
}
export default BugDetail;
問題はそう、props
オブジェクトは常に空であるということです私は自分のコンポーネントの引数に到達することはできません。言い換えれば、ユーザーがhttp://localhost:3000/bugs-overview/anBugID
に移動した場合、私は値anBugID
を検出できません。
私はこれに関する多くの質問とページを見てきましたが、誰もこの問題のトリックを行っていませんでした。