javascript 尝试用`render` prop替换react-redux的`connect` HoC。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 尝试用`render` prop替换react-redux的`connect` HoC。相关的知识,希望对你有一定的参考价值。

import PropTypes from 'prop-types'
import { connect } from 'react-redux'

export const ReduxConnect = ({
  mapDispatchToProps,
  mapStateToProps,
  render,
}) => (
  connect(
    (mapStateToProps || null),
    mapDispatchToProps
  )(
    render
  )
)

ReduxConnect.propTypes = {
  mapDispatchToProps: PropTypes.any,
  mapStateToProps: PropTypes.func,
  render: PropTypes.func.isRequired,
}

export default ReduxConnect

以上是关于javascript 尝试用`render` prop替换react-redux的`connect` HoC。的主要内容,如果未能解决你的问题,请参考以下文章

关于render渲染优化

使用 NextJS 用 Class Components 和 getInitialProps 做 s-s-r,render 方法有未定义的数据

JavaScript - 带有箭头函数的超时内部[重复]

res.render() 不渲染 ejs 文件,没有抛出错误 node.js app

javascript JSX Render if

template render in javascript