Link反応ルーターで小道具を渡す


137

私はreact-routerでreactを使用しています。反応ルータの「リンク」でプロパティを渡そうとしています

var React  = require('react');
var Router = require('react-router');
var CreateIdeaView = require('./components/createIdeaView.jsx');

var Link = Router.Link;
var Route = Router.Route;
var DefaultRoute = Router.DefaultRoute;
var RouteHandler = Router.RouteHandler;
var App = React.createClass({
  render : function(){
    return(
      <div>
        <Link to="ideas" params={{ testvalue: "hello" }}>Create Idea</Link>
        <RouteHandler/>
      </div>
    );
  }
});

var routes = (
  <Route name="app" path="/" handler={App}>
    <Route name="ideas" handler={CreateIdeaView} />
    <DefaultRoute handler={Home} />
  </Route>
);

Router.run(routes, function(Handler) {

  React.render(<Handler />, document.getElementById('main'))
});

「リンク」はページをレンダリングしますが、プロパティを新しいビューに渡しません。以下はビューコードです

var React = require('react');
var Router = require('react-router');

var CreateIdeaView = React.createClass({
  render : function(){
    console.log('props form link',this.props,this)//props not recived
  return(
      <div>
        <h1>Create Post: </h1>
        <input type='text' ref='newIdeaTitle' placeholder='title'></input>
        <input type='text' ref='newIdeaBody' placeholder='body'></input>
      </div>
    );
  }
});

module.exports = CreateIdeaView;

「リンク」を使用してデータを渡すにはどうすればよいですか?

回答:


123

この行がありませんpath

<Route name="ideas" handler={CreateIdeaView} />

する必要があります:

<Route name="ideas" path="/:testvalue" handler={CreateIdeaView} />

次の場合Link (古いv1)

<Link to="ideas" params={{ testvalue: "hello" }}>Create Idea</Link>

v4の時点で最新

const backUrl = '/some/other/value'
// this.props.testvalue === "hello"
<Link to={{pathname: `/${this.props.testvalue}`, query: {backUrl}}} />

およびwithRouter(CreateIdeaView)コンポーネント内render()

console.log(this.props.match.params.testvalue, this.props.location.query.backurl)
// output
hello /some/other/value

ドキュメントに投稿したリンクから、ページの下部に向かって:

次のようなルートがあるとします <Route name="user" path="/users/:userId"/>



いくつかのスタブされたクエリの例で更新されたコード例:

// import React, {Component, Props, ReactDOM} from 'react';
// import {Route, Switch} from 'react-router'; etc etc
// this snippet has it all attached to window since its in browser
const {
  BrowserRouter,
  Switch,
  Route,
  Link,
  NavLink
} = ReactRouterDOM;

class World extends React.Component {
  constructor(props) {
    super(props);
    console.dir(props);      
    this.state = {
      fromIdeas: props.match.params.WORLD || 'unknown'
    }
  }
  render() {
    const { match, location} = this.props;
    return (
      <React.Fragment>
        <h2>{this.state.fromIdeas}</h2>
        <span>thing: 
          {location.query 
            && location.query.thing}
        </span><br/>
        <span>another1: 
        {location.query 
          && location.query.another1 
          || 'none for 2 or 3'}
        </span>
      </React.Fragment>
    );
  }
}

class Ideas extends React.Component {
  constructor(props) {
    super(props);
    console.dir(props);
    this.state = {
      fromAppItem: props.location.item,
      fromAppId: props.location.id,
      nextPage: 'world1',
      showWorld2: false
    }
  }
  render() {
    return (
      <React.Fragment>
          <li>item: {this.state.fromAppItem.okay}</li>
          <li>id: {this.state.fromAppId}</li>
          <li>
            <Link 
              to={{
                pathname: `/hello/${this.state.nextPage}`, 
                query:{thing: 'asdf', another1: 'stuff'}
              }}>
              Home 1
            </Link>
          </li>
          <li>
            <button 
              onClick={() => this.setState({
              nextPage: 'world2',
              showWorld2: true})}>
              switch  2
            </button>
          </li>
          {this.state.showWorld2 
           && 
           <li>
              <Link 
                to={{
                  pathname: `/hello/${this.state.nextPage}`, 
                  query:{thing: 'fdsa'}}} >
                Home 2
              </Link>
            </li> 
          }
        <NavLink to="/hello">Home 3</NavLink>
      </React.Fragment>
    );
  }
}


class App extends React.Component {
  render() {
    return (
      <React.Fragment>
        <Link to={{
          pathname:'/ideas/:id', 
          id: 222, 
          item: {
              okay: 123
          }}}>Ideas</Link>
        <Switch>
          <Route exact path='/ideas/:id/' component={Ideas}/>
          <Route path='/hello/:WORLD?/:thing?' component={World}/>
        </Switch>
      </React.Fragment>
    );
  }
}

ReactDOM.render((
  <BrowserRouter>
    <App />
  </BrowserRouter>
), document.getElementById('ideas'));
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-router-dom/4.3.1/react-router-dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-router/4.3.1/react-router.min.js"></script>

<div id="ideas"></div>

更新:

参照:https : //github.com/ReactTraining/react-router/blob/0c6d51cd6639aff8a84b11d89e27887b3558ed8a/upgrade-guides/v2.0.0.md#link-to-onenter-and-isactive-use-location-descriptors

1.xから2.xへのアップグレードガイドから:

<Link to>、onEnter、isActiveはロケーション記述子を使用します

<Link to>文字列に加えて位置記述子を使用できるようになりました。クエリと状態のプロパティは廃止されました。

// v1.0.x

<Link to="/foo" query={{ the: 'query' }}/>

// v2.0.0

<Link to={{ pathname: '/foo', query: { the: 'query' } }}/>

// 2.xでも引き続き有効

<Link to="/foo"/>

同様に、onEnterフックからのリダイレクトもロケーション記述子を使用するようになりました。

// v1.0.x

(nextState, replaceState) => replaceState(null, '/foo')
(nextState, replaceState) => replaceState(null, '/foo', { the: 'query' })

// v2.0.0

(nextState, replace) => replace('/foo')
(nextState, replace) => replace({ pathname: '/foo', query: { the: 'query' } })

カスタムのリンクのようなコンポーネントの場合、同じことがrouter.isActive、以前はhistory.isActiveに適用されます。

// v1.0.x

history.isActive(pathname, query, indexOnly)

// v2.0.0

router.isActive({ pathname, query }, indexOnly)

v3からv4への更新:

後世のための「レガシー移行ドキュメント」


3
バージョン2.0ではparamsがサポートされていないようです。テスト値が小道具に保存されているため、<Link to = { /ideas/${this.props.testvalue}}> {this.props.testvalue} </ Link>のようになります
Braulio

1
@Braulioありがとう。私は私の答えを更新し、v1とv2の間の<Link>の違いに関するドキュメントをいくつか含めました
jmunsch

4
@Braulio:正しい方法は次のとおりです:<Link to={`/ideas/${this.props.testvalue}`}>{this.props.testvalue}</Link>、バッククォート付き
Enoah Netzach

1
はい、申し訳ありません。修正するコードを貼り付けたところ、バッククォートが失われました。
Braulio 2016年

2
これは、バッククォートを使用しなくても機能します<Link to={'/ideas/'+this.props.testvalue }>{this.props.testvalue}</Link>
svassr

91

複数のパラメータを渡す方法があります。「to」を文字列の代わりにオブジェクトとして渡すことができます。

// your route setup
<Route path="/category/:catId" component={Category} / >

// your link creation
const newTo = { 
  pathname: "/category/595212758daa6810cbba4104", 
  param1: "Par1" 
};
// link to the "location"
// see (https://reacttraining.com/react-router/web/api/location)
<Link to={newTo}> </Link>

// In your Category Component, you can access the data like this
this.props.match.params.catId // this is 595212758daa6810cbba4104 
this.props.location.param1 // this is Par1

2
まさに私が欲しいもの。
gramcha

8
この答えは非常に過小評価されています。明らかではありませんが、ドキュメントではこのreacttraining.com/react-router/web/api/Link/to-objectについて言及しています。「state」とマークされた単一のオブジェクトとしてデータを渡すことをお勧めします
sErVerdevIL

13
これがこの質問に対する最良の答えです。
ファンリカルド

あまりにも長い間ドラマを扱っていて、これは完全にうまくいきました!V4
マイク・

1
パス属性では、記事へのマッピングの代わりに「/ category / 595212758daa6810cbba4104」にすべきではありませんか?
カミロ

38

アプリケーションからユーザーの詳細を表示するのと同じ問題がありました。

あなたはこれを行うことができます:

<Link to={'/ideas/'+this.props.testvalue }>Create Idea</Link>

または

<Link to="ideas/hello">Create Idea</Link>

そして

<Route name="ideas/:value" handler={CreateIdeaView} />

this.props.match.params.valueCreateIdeaViewクラスでこれを取得します。

あなたは私を大いに助けたこのビデオを見ることができます:https : //www.youtube.com/watch?v=ZBxMljq9GSE


3
正確にドキュメントが言うこと。しかし、上記のようにルートを定義し、パラメータ値を渡すようにLINKを構成するDESPITEの場合、Reactコンポーネントクラスにはthis.props.params値がURLから取得されません。なぜこれが起こるのでしょうか?ルートバインディングがないだけのようなものです。コンポーネントクラスのrender()は機能しますが、コンポーネントに渡されるデータはありません。
Peter

しかし、最後の例では、CreateIdeaViewコンポーネントの「value」変数をどのようにプルしますか?
Aspen

20

react-router-dom 4.xx(https://www.npmjs.com/package/react-router-dom)と同様に、コンポーネントにparamsを渡してルーティングすることができます:

<Route path="/ideas/:value" component ={CreateIdeaView} />

リンク(testValueプロップが対応するコンポーネント(上記のAppコンポーネントなど)に渡され、リンクがレンダリングされることを考慮)

<Link to={`/ideas/${ this.props.testValue }`}>Create Idea</Link>

コンポーネントコンストラクターに小道具を渡すと、値paramが使用可能になります

props.match.params.value


7

インストール後 react-router-dom

<Link
    to={{
      pathname: "/product-detail",
      productdetailProps: {
       productdetail: "I M passed From Props"
      }
   }}>
    Click To Pass Props
</Link>

ルートがリダイレクトされる他の端はこれを行います

componentDidMount() {
            console.log("product props is", this.props.location.productdetailProps);
          }

4

上記の答え(https://stackoverflow.com/a/44860918/2011818)を回避するには、Linkオブジェクト内の「To」にオブジェクトをインラインで送信することもできます。

<Route path="/foo/:fooId" component={foo} / >

<Link to={{pathname:/foo/newb, sampleParam: "Hello", sampleParam2: "World!" }}> CLICK HERE </Link>

this.props.match.params.fooId //newb
this.props.location.sampleParam //"Hello"
this.props.location.sampleParam2 //"World!"

3

活字

多くの回答でこのように言及されているアプローチについては、

<Link
    to={{
        pathname: "/my-path",
        myProps: {
            hello: "Hello World"
        }
    }}>
    Press Me
</Link>

エラーが発生しました

オブジェクトリテラルは既知のプロパティのみを指定でき、 'myProps'はタイプ 'LocationDescriptorObject | ((location:Location)=> LocationDescriptor) '

次に、同じ目的で提供されている公式ドキュメントをチェックインしましたstate

このように機能しました

<Link
    to={{
        pathname: "/my-path",
        state: {
            hello: "Hello World"
        }
    }}>
    Press Me
</Link>

次のコンポーネントでは、この値を次のように取得できます。

componentDidMount() {
    console.log("received "+this.props.location.state.hello);
}

ありがとう@gprathour
Akshay Vijay Jain

0

ルート:

<Route state={this.state} exact path="/customers/:id" render={(props) => <PageCustomer {...props} state={this.state} />} />

そして、次のようにPageCustomerコンポーネントのparamsにアクセスできますthis.props.match.params.id

たとえば、PageCustomerコンポーネントのapi呼び出し:

axios({
   method: 'get',
   url: '/api/customers/' + this.props.match.params.id,
   data: {},
   headers: {'X-Requested-With': 'XMLHttpRequest'}
 })
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.