ReactProps没有传递给子组件?
我正在尝试学习 React,所以请耐心等待!
我正在学习一个教程来帮助我理解 react 以及如何传递组件。
我试图将道具向下传递 2 个级别,但是当我在第三个元素上呈现代码时,页面上没有任何内容。在 chrome 上使用 React Dev 工具,似乎道具加载在 Tweets.js 组件上,而不是 Tweet.js 组件上。
谁能告诉我怎么了?顺序是 App.js > Tweets.js > Tweet.js
对于参考,我正在学习以下教程,大约 15 分钟。
反应状态和道具 | 为初学者学习 React 第 4 部分
应用程序.js
import './App.css';
import Tweets from './components/Tweets';
import React from 'react';
function App() {
const name=["Name1", "Name2", "Name3"];
const age=["21", "22", "24"]; /* Data is created here */
return (
<div className="App">
<Tweets me={name} age={age} />{/*Data is added to component*/ }
</div>
);
}
export default App;
推文.js
import Tweet from './Tweet';
const Tweets = (props) => (
<section>
<Tweet />
</section>
);
export default Tweets;
推特.js
const Tweet = (props) => (
<div>
<h1>{props.me}</h1>
<h1>{props.age}</h1>
</div>
);
export default Tweet;
回答
您需要通过您的Tweets
组件传输道具:
const Tweets = (props) => (
<section>
<Tweet {...props} />
</section>
);