作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
链接组件
return (
<div key={driver.id}>
<Link to={"/drivers/" + driver.id}>
<OurStaffList driver={driver} />
</Link>
</div>
App.js
<Switch>
<Route exact path="/" component={HomePage} />
<Route path="/archived-routes" component={ArchivedRoutes} />
<Route path="/find-routes" component={FindRoutes} />
<Route path="/signup" component={SignUp} />
<Route path="/signin" component={SignIn} />
<Route path="/drivers/:driver_id" component={DriverProfile} />
</Switch>
现在在我需要路由 ID 的组件中,我收到“错误无法识别参数...”有人可以告诉我如何将路线 Prop 放入组件中,以便我可以渲染正确的驾驶员配置文件吗?
const DriverProfile = ({ driver, getDrivers }) => {
useEffect(() => {
getDrivers();
// eslint-disable-next-line
}, []);
console.log();
return (
<div className="col s12">
<ul className="with-header">
{driver.drivers &&
driver.drivers.map(driver => {
return <DriverProfileList driver={driver} key={driver.id} />;
})}
</ul>
</div>
);
};
DriverProfile.propTypes = {
driver: PropTypes.object.isRequired
};
const mapStateToProps = (state, ownProps) => {
let id = ownProps.match.params.driver_id;
console.log(id);
return {
driver: state.driver
};
};
最佳答案
https://reacttraining.com/react-router/core/api/Hooks/useparams
因此,在您的 DriverProfile 函数组件中:
let { driver_id } = useParams();
关于reactjs - 如何将路由 Prop 传递到我的功能组件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59939674/
我是一名优秀的程序员,十分优秀!