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>
    );
  }
}

これが修正を加えた私のコードのバージョンです。ストアに接続された redux-simple-router のインスタンスを使用し、そのメソッドを prop としてコンポーネントに渡す必要がありました。

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 に答える