按照《学习 ReactJS》一书中的例子,我尝试以同样的方式传递数组只会产生错误。
来自作者的Github示例: https://github.com/MoonHighway/learning-react/blob/master/chapter-04/03-react-components/04-components.html
const IngredientsList = ({items}) =>
React.createElement("ul", {className: "ingredients"},
items.map((ingredient, i) =>
React.createElement("li", { key: i }, ingredient)
)
)
const items = [
"1 lb Salmon",
"1 cup Pine Nuts",
"2 cups Butter Lettuce",
"1 Yellow Squash",
"1/2 cup Olive Oil",
"3 cloves of Garlic"
]
ReactDOM.render(
React.createElement(IngredientsList, {items}, null),
document.getElementById('react-container')
)
我用 create-react-app
建立了一个 React 应用程序,并在 App.js 中编写了以下内容:
const things = [
'foo',
'bar',
'baz',
'fizz',
'buzz'
];
const App = ({things}) =>
React.createElement("ul",{className: "thingsAndStuff"},
things.map((item, value) =>
React.createElement("li", {key:value}, item)
)
);
在索引中.js我将ReactDom.render作为:
ReactDOM.render(React.createElement(App, null, null), document.getElementById('root'));
我收到一个错误"things.map 不是函数"。当我删除解构things
(const App = () => ...
(时,我的组件工作了。
我的问题是: 1. 当两者都是用 const
声明并且可以想象不在同一范围内时,如何将things
拉入 App((,并且things
没有专门传递到函数中? 2. 如果我做了一些不同的事情,示例代码对我有用吗?
谢谢!
使用 createElement
时,props 会传递到组件中:
React.createElement(App, /*props:*/ { things });
第一个代码段就是这样做的。第二个没有,因此局部变量things
将被undefined
,因此你不能迭代它。如果你想访问一个全局变量,你只需要确保没有局部变量具有相同的名称,所以这也行得通:
const App = () => React.createElement("ul",
{ className: "thingsAndStuff" },
things.map((item, value) =>
React.createElement("li", {key:value}, item)
)
);