将React prop从rendor方法传递到同一组件中的不同类方法

时间:2019-02-04 21:11:57

标签: javascript reactjs methods

关于在组件之间传递道具的信息很多,但是在组件内部如何呢?考虑这段代码:

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

0 个答案:

没有答案