// "/:id"
this.props.match.params.id
// "/:r/:g/:b"
this.props.match.params.r
this.props.match.params.g
this.props.match.params.b
我在 Server 确认
<Switch>
<Route path="/" exact component={Home} />
<Route component={NoMatch} />
</Switch>
<Switch>
<Route ...>
</Switch>
<Route path="/" exact component={Home} />