什么是 ReactJS this.props.items.map 属性?
这应该可以帮助您理解使用“map”方法来遍历和显示代表 ReactJS 组件的相似对象列表的概念。标题“this.props.items.map”可以是任何其他映射方法,例如“this.props.profiles.map”,下面有示例,其中配置文件或项目表示数组。它可用于创建列表、表格等。
以下是本文的要点:
- Map 不是 ReactJS 的特性
- 在 this.props.profiles.map 的上下文中查看使用“map”的代码示例
在查看了这个ReactJS 教程页面上提供的教程后,其中引用了 .map 来显示 Comment 对象,人们可能会感到困惑,并认为“map”是 ReactJS 的一个特性。事实上,这是一个标准的 JavaScript 函数,可以在任何数组上调用
如果您使用过 Python(应用方法)或 R(lapply 方法)等语言,您可能已经使用“map”作为传递函数的方法,该函数的参数表示存储在数组中的对象的引用。当“map”被调用时,该函数被应用于存储在数组中的每个对象。“map”返回一个由对象组成的新数组,这些对象可能是使用传递数组的对象创建的
一般语法是: array.map(func)
其中 func 应采用一个参数。
如上文所述,array.map 的返回值是另一个数组。
在 this.props.profiles.map 的上下文中使用“map”的代码示例
在下面的示例中,请注意以下一些事项:
- 有两个组件,例如 UserProfiles 和 Profile
- 配置文件组件用于表示由名称和国家/地区属性组成的实际配置文件。
- 顾名思义,UserProfiles 用于表示一个或多个配置文件并呈现配置文件组件。
- 请注意, UserProfiles 传递了一个 json 对象,例如 profilesJson,它由以 JSON 对象形式表示的配置文件组成。
- UserProfiles 的 render 方法显示使用“map”方法创建的“allProfiles”变量。反过来,“map”方法返回一个数组 Profile 对象。
以下是以下代码示例在 HTML 上的显示方式:
<div id="content"></div>
<script type="text/jsx">
var profilesJson = [
{name: "Pete Hunt", country: "USA"},
{name: "Jordan Walke", country: "Australia"}];
var Profile = React.createClass({
render: function(){
return(
<div>
<div>Name: {this.props.name}</div>
<div>Country: {this.props.country}</div>
<hr/>
</div>
);
}
});
var UserProfiles = React.createClass({
render: function(){
var allProfiles = this.props.profiles.map(function(profile){
return (
<Profile name={profile.name} country={profile.country} />
);
});
return(
<div>{allProfiles}</div>
);
}
});
React.render( <UserProfiles profiles={profilesJson}/>, document.getElementById( "content"));</script>