我有一个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
。