0

我将 redux-simple-router 移植到样板 react/redux 同构工具包(https://github.com/erikras/react-redux-universal-hot-example)中。我有一个简单的单击事件处理程序,它从 redux-simple-router 调用“pushPath”。但是,pushPath 似乎没有更新我的 URL。我已经实现了初始端口(syncReduxAndRouter),其他路由似乎工作正常(其他路由使用 updatePath)。我还需要做些什么才能使其正常工作吗?

import React, {Component} from 'react';
import { pushPath } from 'redux-simple-router';
import {connect} from 'react-redux';

@connect(null,
  { pushPath })
export default class MyContainer extends Component {
  constructor() {
    super();
this.state = { links: [{key: 0, name: 'Link1'}, {key: 1, name: 'Link2'}, {key: 2, name: 'Link3'}] };
  }
 // pass in redux actions as props

  handleClick(value) {
    pushPath('/Links/' + value);
  }

  render() {
    return (
      <div className="container">
         <div>Search bar here</div>
         <div className={styles.tile_container}>
       Tiles here
           {this.state.links.map(source =>
             <div name={link.name} key={link.key}     className={styles.source_tile} onClick=    {this.handleClick.bind(this, link.name)}>{link.name}</div>
           )}
         </div>
      </div>
    );
  }
}

这是带有修复程序的代码版本。我需要使用一个连接到 store 的 redux-simple-router 实例,然后将其方法作为道具传递给组件。

import React, {Component, PropTypes} from 'react';
import { pushPath } from 'redux-simple-router';
import {connect} from 'react-redux';

@connect(null,
  { pushPath })
export default class MyComponent extends Component {

 static propTypes = {
    pushPath: PropTypes.func.isRequired
  };
  constructor() {
    super();
    this.state = { links: [{key: 0, name: 'Link1'}, {key: 1, name: 'Link2'}, {key: 2, name: 'Link3'}] };
  }
 // pass in redux actions as props

  handleClick(value) {
    this.props.pushPath('/Links/' + value);
  }

  render() {
    return (
      <div className="container">
         <div>Search bar here</div>
         <div className={styles.tile_container}>
       Tiles here
           {this.state.links.map(source =>
             <div name={link.name} key={link.key}     className={styles.source_tile} onClick=    {this.handleClick.bind(this, link.name)}>{link.name}</div>
           )}
         </div>
      </div>
    );
  }
}
4

1 回答 1

3

您正在调用动作创建者pushPath而不是绑定方法。

动作创建者只返回普通对象。要调用绑定方法,您应该这样做

handleClick(value) {
   this.props.pushValue('/Links/' + value);
}

@connect创建适当的调度方法并通过道具将其传播给您。

于 2015-12-27T13:42:35.190 回答