最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to pass props to react component that wrapped in variable - Stack Overflow

programmeradmin1浏览0评论

I want to render table cell dynamically. Each cell is a React ponent. I'm trying to export these React ponents as a wrap function.

For example:

import cellA from './cellA'
import cellB from './cellB'
import cellC from './cellC'

let content = { cellA, cellB, cellC }

function tableize (a) {
    let resultFn = {}
    Object.keys(a).forEach((k) => {
        let element = a[k]
        resultFn[k] = function (data) {
            return (<element data={data} />)
        }
    })
    return resultFn
}

export default tableize(content)

The problem is on this line:

return (<element data={data} />)

The result is browser render list of React ponents named element, not cellA, cellB, cellC. The function return element as jsx (in < /> tag) because I need to pass props to these React ponent. But I'm wrong.

How to pass props to this React ponent that wrapped in a variable?

Thank you!

I want to render table cell dynamically. Each cell is a React ponent. I'm trying to export these React ponents as a wrap function.

For example:

import cellA from './cellA'
import cellB from './cellB'
import cellC from './cellC'

let content = { cellA, cellB, cellC }

function tableize (a) {
    let resultFn = {}
    Object.keys(a).forEach((k) => {
        let element = a[k]
        resultFn[k] = function (data) {
            return (<element data={data} />)
        }
    })
    return resultFn
}

export default tableize(content)

The problem is on this line:

return (<element data={data} />)

The result is browser render list of React ponents named element, not cellA, cellB, cellC. The function return element as jsx (in < /> tag) because I need to pass props to these React ponent. But I'm wrong.

How to pass props to this React ponent that wrapped in a variable?

Thank you!

Share Improve this question edited Aug 9, 2017 at 5:40 Code Guru 15.6k30 gold badges144 silver badges210 bronze badges asked Aug 9, 2017 at 5:09 Andarias SilvanusAndarias Silvanus 831 gold badge1 silver badge4 bronze badges 1
  • Where is the data props e from? You didn't put data as parameter in function tableize(a) Is it working if you just use <element /> ? – Hana Alaydrus Commented Aug 9, 2017 at 5:33
Add a ment  | 

2 Answers 2

Reset to default 6

Try this:

function tableize (a) {
    let resultFn = {}
    Object.keys(a).forEach((k) => {
        // Uppercase "E" from Element
        let Element = a[k]
        resultFn[k] = function (data) {
            // Uppercase "E" from Element
            return (<Element data={data} />)
        }
    })
    return resultFn
}

It seem like what you want is a higher order ponent (HOC)

function wrapper(WrappedComponent) {
  return class extends React.Component {
    render() {
      // Wraps the input ponent in a container, without mutating it. Good!
      return <WrappedComponent {...this.props} />;
    }
  }
}

Please read this https://facebook.github.io/react/docs/higher-order-ponents.html

发布评论

评论列表(0)

  1. 暂无评论