ส่งผ่านอุปกรณ์ประกอบฉากใน Link react-router


151

ฉันใช้ react กับ react-router ฉันกำลังพยายามส่งคุณสมบัติใน "ลิงก์" ของ 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;

ฉันจะส่งผ่านข้อมูลโดยใช้ "ลิงก์" ได้อย่างไร

คำตอบ:


134

ไม่มีบรรทัดนี้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 use location descriptors

<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 hook ตอนนี้ยังใช้ตัวบอกตำแหน่ง

// 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
ดูเหมือนว่า params ไม่ได้รับการสนับสนุนในเวอร์ชัน 2.0 เนื่องจากค่าการทดสอบ asumming จะถูกเก็บไว้ในอุปกรณ์ประกอบฉากก็จะเป็นเช่น <Link to = { /ideas/${this.props.testvalue}}> {this.props.testvalue} </Link>
Braulio

1
@Braulio ขอบคุณ ฉันอัปเดตคำตอบของฉันและรวมเอกสารเพิ่มเติมสำหรับความแตกต่างสำหรับ <Link> ระหว่าง v1 และ v2
jmunsch

4
@Braulio: วิธีที่ถูกต้องคือ: <Link to={`/ideas/${this.props.testvalue}`}>{this.props.testvalue}</Link>กับ backticks
Enoah Netzach

1
ใช่ขอโทษ backticks หายไปเมื่อฉันวางโค้ดเพื่อแก้ไข
Braulio

2
สิ่งนี้ใช้ได้กับฉันโดยไม่ต้องใช้ backticks<Link to={'/ideas/'+this.props.testvalue }>{this.props.testvalue}</Link>
svassr

103

มีวิธีที่คุณสามารถส่งผ่านมากกว่าหนึ่งพารามิเตอร์ คุณสามารถส่ง "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

9
คำตอบนี้มีการประเมินต่ำมาก ไม่ชัดเจน แต่เอกสารระบุถึงreacttraining.com/react-router/web/api/Link/to-objectนี้ ขอแนะนำให้ส่งผ่านข้อมูลเป็นวัตถุเดียวที่มีเครื่องหมาย 'state'
sErVerdevIL

14
นี่คือคำตอบที่ดีที่สุดสำหรับคำถามนี้
Juan Ricardo

รับมือกับดราม่ามานานเกินไปและเรื่องนี้ได้ผล! V4
Mike

1
ในแอตทริบิวต์ path ไม่ควรเป็น "/ category / 595212758daa6810cbba4104" แทนที่จะแมปกับบทความ ???
Camilo

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.valueที่คลาส CreateIdeaView ของคุณ

คุณสามารถดูวิดีโอนี้ที่ช่วยฉันได้มาก: https://www.youtube.com/watch?v=ZBxMljq9GSE


3
สิ่งที่เอกสารระบุไว้อย่างแม่นยำ อย่างไรก็ตามฉันมีกรณีที่ DESPITE กำหนดเส้นทางตามด้านบนและการกำหนดค่า LINK เพื่อส่งผ่านค่าพารามิเตอร์คลาสส่วนประกอบของ React ไม่มีค่า this.props.params ใด ๆ ที่หยิบขึ้นมาจาก URL มีความคิดว่าทำไมสิ่งนี้จึงเกิดขึ้น? เหมือนกับการผูกเส้นทางขาดหายไป การแสดงผล () ในคลาสคอมโพเนนต์ DOES มีส่วนร่วม แต่ไม่มีข้อมูลที่ส่งผ่านไปยังคอมโพเนนต์
ปีเตอร์

แต่ในตัวอย่างสุดท้ายคุณจะดึงตัวแปร 'value' ในคอมโพเนนต์ CreateIdeaView ได้อย่างไร?
Aspen

21

สำหรับ 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.match.params.value

ใช่มันใช้งานได้ดี <Link to = { /movie/detail/${this.state.id}} className = "btn btn-secondary btn-lg active"> Detail </Link>
Muhammad Shahzad


7

หากต้องการแก้ไขคำตอบข้างต้น ( https://stackoverflow.com/a/44860918/2011818 ) คุณยังสามารถส่งวัตถุในบรรทัด "ถึง" ภายในออบเจ็กต์ลิงก์

<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!"

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

5

ประเภท

สำหรับแนวทางที่กล่าวถึงเช่นนี้ในหลาย ๆ คำตอบ

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

ฉันได้รับข้อผิดพลาด

Object literal สามารถระบุคุณสมบัติที่รู้จักเท่านั้นและ 'myProps' ไม่มีอยู่ในประเภท 'LocationDescriptorObject | ((ที่ตั้ง: ที่ตั้ง) => LocationDescriptor) '

จากนั้นฉันตรวจสอบในเอกสารอย่างเป็นทางการที่พวกเขาให้stateไว้เพื่อจุดประสงค์เดียวกัน

มันได้ผลเช่นนี้

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

และในส่วนประกอบถัดไปคุณจะได้รับค่านี้ดังต่อไปนี้

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

1
ขอบคุณ @gprathour
Akshay Vijay Jain


0

เส้นทาง:

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

และจากนั้นสามารถเข้าถึงพารามิเตอร์ในองค์ประกอบ PageCustomer this.props.match.params.idของคุณเช่นนี้:

ตัวอย่างเช่นการเรียก api ในคอมโพเนนต์ PageCustomer:

axios({
   method: 'get',
   url: '/api/customers/' + this.props.match.params.id,
   data: {},
   headers: {'X-Requested-With': 'XMLHttpRequest'}
 })

0

แนวทางที่ง่ายที่สุดคือการใช้ประโยชน์จากto:objectภายในlinkตามที่ระบุไว้ในเอกสาร:
https://reactrouter.com/web/api/Link/to-object

<Link
  to={{
    pathname: "/courses",
    search: "?sort=name",
    hash: "#the-hash",
    state: { fromDashboard: true, id: 1 }
  }}
/>

เราสามารถดึงข้อมูลพารามิเตอร์ด้านบน (สถานะ) ดังต่อไปนี้:

this.props.location.state // { fromDashboard: true ,id: 1 }

0

หากคุณเป็นเพียงการมองหาเพื่อแทนที่ทากในเส้นทางของคุณคุณสามารถใช้generatePathที่ได้รับการแนะนำในการตอบสนองเตอร์ 4.3 (2018) ณ วันนี้มันไม่ได้รวมอยู่ในเอกสารตอบสนองเตอร์-Dom (เว็บ)แต่อยู่ในการตอบสนองเราเตอร์ (หลัก) ฉบับที่ # 7679

// myRoutes.js
export const ROUTES = {
  userDetails: "/user/:id",
}


// MyRouter.jsx
import ROUTES from './routes'

<Route path={ROUTES.userDetails} ... />


// MyComponent.jsx
import { generatePath } from 'react-router-dom'
import ROUTES from './routes'

<Link to={generatePath(ROUTES.userDetails, { id: 1 })}>ClickyClick</Link>

เป็นแนวคิดเดียวกับที่django.urls.reverseมีมาระยะหนึ่งแล้ว

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.