关于在组件之间传递道具的信息很多,但是在组件内部如何呢?考虑这段代码:
export default class Milestone extends React.Component {
goToTheNextPage() {
window.location = this.props.url
}
render() {
return (
<BaseLayout>
<Button
onClick={
this.goToTheNextPage
}
/>
</BaseLayout>
)
}
}
this.props
仅在render方法中可用。那么如何在我的示例中将道具数据从另一个组件导入goToTheNextPage
?