如何在没有类或功能组件的情况下使用redux道具?

时间:2020-10-28 06:16:41

标签: reactjs react-redux

我有一个constants.js文件,如下所示:

import { connect } from 'react-redux';

const ConstantFiles = {

    {
                            text: "CLEAR FILTERS",
                            style: {
                                color: "#fff",
                                backgroundColor: "#070d59",
                                cursor: "pointer",
                                padding: "2%",
                            },
                            clicked: () => {
                                //I need to put the redux function here
                            }
                        },

};

const mapDispatchToProps = dispatch => {
    return {
        
        onMetricConditionAdd: () => dispatch(actions.clearAllFilters()),
    }
  
  }



export default connect(null,mapDispatchToProps)(ComponentDetails);

我想执行onMetricConditionAdd,但是由于它是一个常量文件,因此访问它的正确方法是什么?由于它不是类组件,因此无法使用this.props或仅使用props

0 个答案:

没有答案