"Matched leaf route at location " / " does not have an element"



位置匹配的叶路由"没有元素。这意味着它将默认地呈现具有空值的CCD_ 1;"空";页我的控制台中有这个错误。

<Route exact path="/" render= { props => ( <ProductList {...props} products={this.state.products} addToCart={this.addToCart} curretCategory={this.state.curretCategory} info={productInfo} /> )} />

我处理的是相同的代码,这个地方会对你有所帮助。

链接:https://stackoverflow.com/a/71602986/17546497

代码:

<Route
exact
path="/"
element={< ProductList products = {
this.state.products
}
currentCategory = {
this.state.currentCategory
}
addToCart = {
this.addToCart
}
info = {
productInfo
} />}/>

相关内容

  • 没有找到相关文章

最新更新