如何使用带有数据的单页按钮转发,然后在React中访问另一页中的数据

时间:2017-10-01 04:52:13

标签: reactjs react-router react-redux

我正在寻找一些简单的方法来使用从一个页面的按钮转发到另一个页面。我了解到,Redux(还没有研究过)可以在一个页面中存储数据,然后在另一个页面中访问它。但它可能有点过分,因为我只需要一个或两个字符串/数字。你有什么主意吗?或者Redux是唯一的方式吗?

PageOne.js

processDataOnPageTwo() {
  /* code here:
   * forward to /PageTwo
   *   with 'data' from this page
   */
}

...
<button onClick={this.processDataOnPageTwo()}>Modify</button>
...

PageTwo.js

processData() {
  /* code here:
   * probably check this.props.data (if applicable) then use it the calculation needed
   */
}

0 个答案:

没有答案