最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React: how to pass props through a Link from react-router-dom? - Stack Overflow

programmeradmin2浏览0评论

I'm trying to pass title from props to my Dishes ponent using <Link> but can't find a solution. Any sugestions?

import { Link } from "react-router-dom";

const Category = ({ title }) => {
  return (
    <Link to="/dishes">
      {title}
    </Link>
  );
};

export default Category;

App.js is looking like this:

return (
    <Router>
      <div className="App">
        <Route
          path="/"
          exact
          render={(props) => (
              <Categories recipes={recipes} />
          )}
        />
        <Route path="/dishes" ponent={Dishes} />
      </div>
    </Router>
  );

I'm trying to pass title from props to my Dishes ponent using <Link> but can't find a solution. Any sugestions?

import { Link } from "react-router-dom";

const Category = ({ title }) => {
  return (
    <Link to="/dishes">
      {title}
    </Link>
  );
};

export default Category;

App.js is looking like this:

return (
    <Router>
      <div className="App">
        <Route
          path="/"
          exact
          render={(props) => (
              <Categories recipes={recipes} />
          )}
        />
        <Route path="/dishes" ponent={Dishes} />
      </div>
    </Router>
  );
Share Improve this question asked Feb 12, 2021 at 22:54 CruzCruz 1051 gold badge1 silver badge5 bronze badges 1
  • Take a look at params in react-router-dom. reactrouter./web/api/Hooks/useparams – Mellet Commented Feb 12, 2021 at 23:11
Add a ment  | 

1 Answer 1

Reset to default 7

Link can pass a state object that can be retrieved from you ponent through location:

import { Link } from "react-router-dom";

const Category = ({ title }) => {
  return (
    <Link to={{ pathname: "/dishes", state: { title } }}>
      {title}
    </Link>
  );
};

export default Category;

Then you can extract state from location prop. But since you are passing this value only when you click on Link, state can be undefined if you access the Route directly. This way you may want to provide a defaultValue in these cases:

const Dishes = ({location}) => {
  const { title = 'defaultValue' } = location.state || {}

  return <div>{title}</div>
}
发布评论

评论列表(0)

  1. 暂无评论