- ReactJS 教程
- ReactJS - 首页
- ReactJS - 简介
- ReactJS - 路线图
- ReactJS - 安装
- ReactJS - 特性
- ReactJS - 优点与缺点
- ReactJS - 架构
- ReactJS - 创建 React 应用
- ReactJS - JSX
- ReactJS - 组件
- ReactJS - 嵌套组件
- ReactJS - 使用新创建的组件
- ReactJS - 组件集合
- ReactJS - 样式
- ReactJS - 属性 (props)
- ReactJS - 使用属性创建组件
- ReactJS - props 验证
- ReactJS - 构造函数
- ReactJS - 组件生命周期
- ReactJS - 事件管理
- ReactJS - 创建一个事件感知组件
- ReactJS - 在 Expense Manager 应用中引入事件
- ReactJS - 状态管理
- ReactJS - 状态管理 API
- ReactJS - 无状态组件
- ReactJS - 使用 React Hooks 进行状态管理
- ReactJS - 使用 React Hooks 进行组件生命周期管理
- ReactJS - 布局组件
- ReactJS - 分页
- ReactJS - Material UI
- ReactJS - Http 客户端编程
- ReactJS - 表单编程
- ReactJS - 受控组件
- ReactJS - 非受控组件
- ReactJS - Formik
- ReactJS - 条件渲染
- ReactJS - 列表
- ReactJS - Keys
- ReactJS - 路由
- ReactJS - Redux
- ReactJS - 动画
- ReactJS - Bootstrap
- ReactJS - Map
- ReactJS - 表格
- ReactJS - 使用 Flux 管理状态
- ReactJS - 测试
- ReactJS - CLI 命令
- ReactJS - 构建和部署
- ReactJS - 示例
- Hooks
- ReactJS - Hooks 简介
- ReactJS - 使用 useState
- ReactJS - 使用 useEffect
- ReactJS - 使用 useContext
- ReactJS - 使用 useRef
- ReactJS - 使用 useReducer
- ReactJS - 使用 useCallback
- ReactJS - 使用 useMemo
- ReactJS - 自定义 Hooks
- ReactJS 高级
- ReactJS - 可访问性
- ReactJS - 代码分割
- ReactJS - 上下文
- ReactJS - 错误边界
- ReactJS - 转发 Refs
- ReactJS - 片段
- ReactJS - 高阶组件
- ReactJS - 与其他库集成
- ReactJS - 优化性能
- ReactJS - Profiler API
- ReactJS - Portals
- ReactJS - 无 ES6 ECMAScript 的 React
- ReactJS - 无 JSX 的 React
- ReactJS - 调和
- ReactJS - Refs 和 DOM
- ReactJS - 渲染 Props
- ReactJS - 静态类型检查
- ReactJS - 严格模式
- ReactJS - Web Components
- 其他概念
- ReactJS - 日期选择器
- ReactJS - Helmet
- ReactJS - 内联样式
- ReactJS - PropTypes
- ReactJS - BrowserRouter
- ReactJS - DOM
- ReactJS - 轮播图
- ReactJS - 图标
- ReactJS - 表单组件
- ReactJS - 参考 API
- ReactJS 有用资源
- ReactJS - 快速指南
- ReactJS - 有用资源
- ReactJS - 讨论
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; }
最后,在浏览器中检查应用程序。它将显示如下所示的支出:
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