繁体   English   中英

为什么firestoreConnect不读取'props.match.params.id' - 'where'使用react.js和redux的集合查询?

[英]Why is the 'props.match.params.id' not read by firestoreConnect - 'where' collection query using react.js & redux?

我正在尝试使用react,redux和firestore按类别ID过滤产品。 我正在使用firestoreConnect通过链接到语句 - props.match.params.id中的所选类别ID查询产品集合,并将该查询存储为filteredProducts。

当render和firestoreConnect中的console.log但在where子句中时,此param id不为空 - 它未定义或为null。 因此,查询集合为空,因此不会检索任何记录。

任何解决方案将不胜感激。

我可以在firestoreConnect中输出props.match.params.id。 此外,我试图在firebase网站上索引firetore集合,但没有成功。

以下是我在产品listing.js中的内容:

import React, { Component } from "react";
import { compose } from "redux";
import { connect } from "react-redux";
import { firestoreConnect } from "react-redux-firebase";

class Listing extends Component {
  render() {
    console.log(this.props.match.params.id); // able to log
    const { filteredProducts } = this.props;
    return (
      <div>
        {filteredProducts && filteredProducts.length > 0 ? (
        <ul>
           {filteredProducts.map(product => (
              <li>{product.name}</li>
            ))}
        </ul>
      ) : (
         <div>no products matching criteria </div>
       )}
      </div>
   );
 }
}

const mapStateToProps = ({ firestore: { ordered } }) => ({
  filteredProducts: ordered.filteredProducts
});

export default compose(
  connect(mapStateToProps),
  firestoreConnect(props => [
    {
      collection: "products",
      where: ["category", "==", props.match.params.id], 
      storeAs: "filteredProducts"
    }
  ])
)(Listing);`

这是package.json文件中的依赖项列表

"firebase": "^5.11.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"react-redux-firebase": "^2.2.6",
"react-reveal": "^1.2.2",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.1",
"redux": "^4.0.1",
"redux-firestore": "^0.6.4",
"redux-thunk": "^2.3.0"

我想要实现的是按类别ID过滤的产品集合

我得到的是null或未定义的数组对象

在使用最新版本的React Router(v4 +)时,必须使用“ withRouter ”高阶组件包装整个组件。 每当渲染时,它都会将更新的匹配,位置和历史道具传递给包装组件。

首先,您必须导入withRouter。

import { withRouter } from "react-router";

然后你必须用withRouter包装它。

export default withRouter(compose(
    connect(mapStateToProps),
    firestoreConnect(props => [
      {
        collection: "products",
        where: ["category", "==", props.match.params.id], 
        storeAs: "filteredProducts"
      }
    ])
  )(Listing));

希望这可以帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM