Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
280 views
in Technique[技术] by (71.8m points)

javascript - How to render children in react component without passing it?

I have component:

const PapeConainer = ({children}) => {
  return (
    <div //some classes and other stuff>
     {children}
    </div>
  );
}

But on merge request got a comment that i don't need to pass children, because function already has it. So, my questing is it possible to render children without passing it. I`m not found any information on this.

like:

const PapeConainer = () => {
  return (
    <div //some classes and other stuff>
     {magic.children}
    </div>
  );
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Actually you can't do that, you have to get the children object from props, just as you said:

const PapeContainer = ({children}) => {
  return (
    <div //some classes and other stuff>
     {children}
    </div>
  );
}

I think that what that comment wanted to say is that you don't have to pass children as a specific prop named "children" in your parent component, like this:

<PapeContainer //some classes and other stuff
   children={someChildren}
/>

That would not make sense because "children" is a special property of React which contains any child elements defined within the component. So instead of passing the prop explicitly you put the children content inside the parent tag, like this:

<PapeContainer //some classes and other stuff>
   {someChildren}
/>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...