在 Link react-router 中传递props

IT技术 javascript reactjs react-router
2021-02-03 19:43:32

我正在使用 react-router 进行react。我正在尝试在 react-router 的“链接”中传递属性

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;

如何使用“链接”传递数据?

6个回答

缺少这一行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/v5

const backUrl = '/some/other/value'
// this.props.testvalue === "hello"

// Using query
<Link to={{pathname: `/${this.props.testvalue}`, query: {backUrl}}} />

// Using search
<Link to={{pathname: `/${this.props.testvalue}`, search: `?backUrl=${backUrl}`} />
<Link to={`/${this.props.testvalue}?backUrl=${backUrl}`} />

withRouter(CreateIdeaView)组件中render()withRouter高阶组件的过时用法

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

在使用useParamsuseLocation钩子的功能组件中

const CreatedIdeaView = () => {
    const { testvalue } = useParams();
    const { query, search } = useLocation(); 
    console.log(testvalue, query.backUrl, new URLSearchParams(search).get('backUrl'))
    return <span>{testvalue} {backurl}</span>    
}

从您在文档上发布的链接到页面底部:

给定一条路线 <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>除了字符串之外,现在还可以使用位置描述符。不推荐使用查询和状态props。

// 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 的更新:

界面基本上还是和v2一样,最好看react-router的CHANGES.md,因为那里是更新的地方。

子孙后代的“遗留移民文件”

这对我有用而不使用反引号 <Link to={'/ideas/'+this.props.testvalue }>{this.props.testvalue}</Link>
2021-03-27 19:43:32
@Braulio:正确的方法是:<Link to={`/ideas/${this.props.testvalue}`}>{this.props.testvalue}</Link>,带反引号
2021-04-02 19:43:32
@Braulio 谢谢。我更新了我的答案,并包含了更多关于 v1 和 v2 之间 <Link> 差异的文档
2021-04-03 19:43:32
是的,抱歉,当我粘贴要修复它的代码时,反引号丢失了。
2021-04-04 19:43:32
似乎 2.0 版本不支持 params,假设测试值存储在 props 中,它将类似于 <Link to={ /ideas/${this.props.testvalue}}>{this.props.testvalue}</Link>
2021-04-07 19:43:32

有一种方法可以传递多个参数。您可以将“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
处理戏剧的时间太长了,这完全奏效!V4
2021-03-20 19:43:32
这是这个问题的最佳答案。
2021-03-31 19:43:32
正是我想要的。
2021-04-01 19:43:32
这个答案被严重低估了。这并不明显,但文档提到了这个reacttraining.com/react-router/web/api/Link/to-object它建议将数据作为标记为“状态”的单个对象传递
2021-04-01 19:43:32
在路径属性不应该是“/category/595212758daa6810cbba4104”而不是映射到文章???
2021-04-09 19:43:32

我在显示应用程序中的用户详细信息时遇到了同样的问题。

你可以这样做:

<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.value在您的 CreateIdeaView 类中获取此信息

你可以看到这个对我有很大帮助的视频:https : //www.youtube.com/watch?v=ZBxMljq9GSE

但是在您的最后一个示例中,您如何在 CreateIdeaView 组件中提取“值”变量?
2021-03-12 19:43:32
正是文档所说的。但是,我有一个案例,尽管如上所述定义了 Route,并配置了 LINK 以传递参数值,但 React 组件类没有从 URL 中获取任何 this.props.params 值。知道为什么会发生这种情况吗?就像根本没有路由绑定一样。组件类中的 render() 确实参与了,但没有数据传递到组件中。
2021-04-07 19:43:32

请参阅此帖子以供参考

简单的是:

<Link to={{
     pathname: `your/location`,
     state: {send anything from here}
}}

现在你想访问它:

this.props.location.state
这对类组件有用吗,对我来说它不起作用
2021-03-30 19:43:32

至于 react-router-dom 4.xx ( https://www.npmjs.com/package/react-router-dom ),您可以将参数传递给组件以通过以下方式路由:

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

链接通过(考虑 testValue prop 被传递到渲染链接的相应组件(例如上面的 App 组件))

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

将props传递给您的组件构造函数,值参数将通过

props.match.params.value
是的,它很好用 <Link to={ /movie/detail/${this.state.id}} className="btn btn-secondary btn-lg active">Detail</Link>
2021-03-30 19:43:32