ReactJS - Map



JavaScript 的 Array 数据类型提供了一系列易于使用的函数来操作数组及其值。map() 就是这样一个函数,它接受一个转换函数,并通过应用转换函数转换给定数组中的每个项来创建一个新数组,并返回新创建的数组。

map 函数的签名如下所示:

array.map(function(item, index, items), thisValue)

这里,

  • currentValue 指的是当前元素的值

  • index 指的是当前元素的索引值

  • items 指的是当前元素的数组

  • thisValue 是可选的 this 值,可以在调用 map 函数时传递

假设我们有一系列数字,并希望将数组中的每个值加倍。我们可以使用 map 函数在一行中完成此操作,如下所示:

var numbers = [2, 4, 6]
var transformed = numbers.map((val) => val + val)
for(var item of transformed) { console.log(item) }

这里,输出将如下所示:

4
8
12

示例

让我们使用 create-react-app 创建一个新的应用程序并启动它。

create-react-app myapp
cd myapp
npm start

接下来,在 components 文件夹下创建一个组件 ExpenseListUsingForLoop(src/components/ExpenseListUsingForLoop.js)。

import React from 'react'
class ExpenseListUsingForLoop extends React.Component {
   render() {
      return <table>
         <thead>
            <tr>
               <th>Item</th>
               <th>Amount</th>
            </tr>
         </thead>
         <tbody>
         </tbody>
         <tfoot>
            <tr>
               <th>Sum</th>
               <th></th>
            </tr>
         </tfoot>
      </table>
   }
}
export default ExpenseListUsingForLoop

在这里,我们创建了一个带有表头和表尾的基本表格结构。

接下来,创建一个函数来查找总支出金额。我们稍后将在 render 方法中使用它。

getTotalExpenses() {
   var items = this.props['expenses'];
   var total = 0;
   for(let i = 0; i < items.length; i++) {
      total += parseInt(items[i]);
   }
   return total;
}

这里,getTotalExpenses 循环遍历 expense 属性并汇总总支出。

接下来,在 render 方法中添加支出项和总金额。

render() {
   var items = this.props['expenses'];
   var expenses = []
   expenses = items.map((item, idx) => <tr><td>item {idx + 1}</td><td>{item}</td></tr>)
   var total = this.getTotalExpenses();
   return <table>
      <thead>
         <tr>
            <th>Item</th>
            <th>Amount</th>
         </tr>
      </thead>
      <tbody>
         {expenses}
      </tbody>
      <tfoot>
         <tr>
            <th>Sum</th>
            <th>{total}</th>
         </tr>
      </tfoot>
   </table>
}

这里我们有:

  • 使用 map 函数遍历 expense 数组中的每个项,为每个条目使用转换函数创建表格行 (tr),最后将返回的数组设置在 expenses 变量中。

  • 在 JSX 表达式中使用 expenses 数组来包含生成的的行。

  • 使用 getTotalExpenses 方法查找总支出金额并将其添加到 render 方法中。

ExpenseListUsingForLoop 组件的完整源代码如下:

import React from 'react'
class ExpenseListUsingForLoop extends React.Component {
   getTotalExpenses() {
      var items = this.props['expenses'];
      var total = 0;
      for(let i = 0; i < items.length; i++) {
         total += parseInt(items[i]);
      }
      return total;
   }
   render() {
      var items = this.props['expenses'];
      var expenses = []
      expenses = items.map((item, idx) => <tr><td>item {idx + 1}</td><td>{item}</td></tr>)
      var total = this.getTotalExpenses();
      return <table>
         <thead>
            <tr>
               <th>Item</th>
               <th>Amount</th>
            </tr>
         </thead>
         <tbody>
            {expenses}
         </tbody>
         <tfoot>
            <tr>
               <th>Sum</th>
               <th>{total}</th>
            </tr>
         </tfoot>
      </table>
   }
}
export default ExpenseListUsingForLoop

接下来,使用 ExpenseListUsingForLoop 组件更新 App 组件 (App.js)。

import ExpenseListUsingForLoop from './components/ExpenseListUsingForLoop';
import './App.css';
function App() {
   var expenses = [100, 200, 300]
   return (
      <div>
         <ExpenseListUsingForLoop expenses={expenses} />
      </div>
   );
}
export default App;

接下来,在 App.css 中添加基本样式。

/* Center tables for demo */
table {
   margin: 0 auto;
}
div {
   padding: 5px;
}
/* Default Table Style */
table {
   color: #333;
   background: white;
   border: 1px solid grey;
   font-size: 12pt;
   border-collapse: collapse;
}
table thead th,
table tfoot th {
   color: #777;
   background: rgba(0,0,0,.1);
   text-align: left;
}
table caption {
   padding:.5em;
}
table th,
table td {
   padding: .5em;
   border: 1px solid lightgrey;
}

最后,在浏览器中检查应用程序。它将显示如下所示的支出:

ReactJS Map

JSX 中的 Map

JSX 允许在其中包含任何 JavaScript 表达式。由于 map 只是 JavaScript 中的一个表达式,因此我们可以像下面这样直接在 JSX 中使用它:

render() {
   var items = this.props['expenses'];
   var expenses = []
   
   // expenses = items.map((item, idx) => <tr><td>item {idx + 1}</td><td>{item}</td></tr>)
   var total = this.getTotalExpenses();
   return <table>
      <thead>
         <tr>
            <th>Item</th>
            <th>Amount</th>
         </tr>
      </thead>
      <tbody>
         {items.map((item, idx) => <tr><td>item {idx + 1}</td><td>{item}</td></tr>)}
      </tbody>
      <tfoot>
         <tr>
            <th>Sum</th>
            <th>{total}</th>
         </tr>
      </tfoot>
   </table>
}
export default ExpenseListUsingForLoop
广告