我对Route
from react-router-dom
( v4.3.1 ) 的用法有两个疑问:
我们什么时候使用
component
vsrender
inRoute
:<Route exact path='/u/:username/' component={ProfileComponent} /> <Route exact path='/u/:username/' render={() => <ProfileComponent />} />
- 如何访问变量
username
在URL中左右逢源?