Giter Site home page Giter Site logo

Comments (4)

icd2k3 avatar icd2k3 commented on May 29, 2024 1

Hey @devinyan,

So in this case it looks like not a problem with this package, but rather mapping a prop to a function which returns a promise.

Using this example I recommend setting up this breadcrumb component like:

(es6)

// ProductTitleBreadcrumb.jsx

export default class ProductTitleBreadcrumb extends React.PureComponent {
  state = {
    productTitle: 'Loading...',
  };

  componentDidMount() {
    const { pid } = this.props.match.params;
    const callURL = `https://easy-mock.com/mock/5b14997f27efb177b0e1052f/products/detail/${pid}`;
    axios.get(callURL).then(({ data }) => {
      this.setState({ productTitle: data.product.title });
    });
  }

  render() {
    const { productTitle } = this.state;
    return (
      <span>{productTitle}</span>
    );
  }
}

from react-router-breadcrumbs-hoc.

devinyan avatar devinyan commented on May 29, 2024 1

Hi @icd2k3 ,
Wow, thank you very much. it works.

from react-router-breadcrumbs-hoc.

icd2k3 avatar icd2k3 commented on May 29, 2024

๐Ÿ‘‹ hey @devinyan,

For testing purposes, if you change your UserBreadcrumb to:
const UserBreadcrumb = () => ( <span>Testing</span> )

Does "Testing" now show up?

from react-router-breadcrumbs-hoc.

devinyan avatar devinyan commented on May 29, 2024

Hi @icd2k3,
Thanks for your response.
Yes as you said, "Testing" was showed up,
but as my code, if the "Testing" was replaced by some function so as to dynamically show value,it didn't work.I don't know why.

from react-router-breadcrumbs-hoc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.