好客租房142-react-virtualized2基本使用

简介: 好客租房142-react-virtualized2基本使用

1安装react-virtualized

2在项目中导入样式组件

3利用list组件完成

import React from 'react'
import axios from 'axios'
//导入axios
//导入navBar组件
import { NavBar, Icon } from 'antd-mobile'
import './index.scss'
import { getCurrentCity } from '../../utils'
//导入react-virtualized组件
import { List } from 'react-virtualized'
// 数据格式化的方法
// list: [{}, {}]
const formatCityData = (list) => {
  const cityList = {}
  // const cityIndex = []
  // 1 遍历list数组
  list.forEach((item) => {
    // 2 获取每一个城市的首字母
    const first = item.short.substr(0, 1)
    // 3 判断 cityList 中是否有该分类
    if (cityList[first]) {
      // 4 如果有,直接往该分类中push数据
      // cityList[first] => [{}, {}]
      cityList[first].push(item)
    } else {
      // 5 如果没有,就先创建一个数组,然后,把当前城市信息添加到数组中
      cityList[first] = [item]
    }
  })
  // 获取索引数据
  const cityIndex = Object.keys(cityList).sort()
  return {
    cityList,
    cityIndex,
  }
}
// 列表数据的数据源
const list = Array(100).fill('react-virtualized')
// 渲染每一行数据的渲染函数
// 函数的返回值就表示最终渲染在页面中的内容
function rowRenderer({
  key, // Unique key within array of rows
  index, // 索引号
  isScrolling, // 当前项是否正在滚动中
  isVisible, // 当前项在 List 中是可见的
  style, // 注意:重点属性,一定要给每一个行数据添加该样式!作用:指定每一行的位置
}) {
  return (
    <div key={key} style={style}>
      1232 -{list[index]} {index} {isScrolling + ''}
    </div>
  )
}
class cityList extends React.Component {
  state = {
    cityList: [],
  }
  componentDidMount() {
    this.getCityList()
  }
  async getCityList() {
    const res = await axios.get('http://localhost:8080/area/city?level=1')
    console.log(res, 'resss')
    const { cityList, cityIndex } = formatCityData(res.data.body)
    console.log(cityList, cityIndex)
    const hotRes = await axios.get('http://localhost:8080/area/hot')
    console.log(hotRes, 'hotRes')
    cityList['hot'] = hotRes.data.body
    cityIndex.unshift('hot')
    console.log(cityList, cityIndex, 'hotList')
    //获取当前定位城市
    const curcity = await getCurrentCity()
    cityList['#'] = [cityList]
    cityIndex.unshift('#')
  }
  render() {
    return (
      <div className="citylist">
        <NavBar
          className="navbar"
          mode="light"
          icon={<i className="iconfont icon-back" />}
          onLeftClick={() => this.props.histoty.push.go(-1)}
          // 导航栏右边内容
          // rightContent={[
          //  
          //    key="0"
          //    type="search"
          //    style={{ marginRight: '16px' }}
          //  />,
          //  ,
          // ]}
        >
          城市选择
        </NavBar>
        {/* 城市列表 */}
        <List
          width={300}
          height={300}
          rowCount={list.length}
          rowHeight={50}
          rowRenderer={rowRenderer}
        />
      </div>
    )
  }
}
export default cityList

运行结果

图片.png

相关文章
好客租房141-react-virtualized1概述
好客租房141-react-virtualized1概述
95 0
好客租房141-react-virtualized1概述
好客租房99-react路由基础总结
好客租房99-react路由基础总结
114 0
好客租房99-react路由基础总结
|
前端开发 JavaScript
好客租房3-React的基本使用
好客租房3-React的基本使用
121 0
|
前端开发
好客租房4-react的基本使用 方法说明
好客租房4-react的基本使用 方法说明
107 0
|
前端开发 开发者
好客租房74-react组件进阶总结
好客租房74-react组件进阶总结
63 0
|
算法 JavaScript 前端开发
好客租房75-react组件
好客租房75-react组件
77 0
|
JavaScript 前端开发
好客租房89-react原理总结
好客租房89-react原理总结
81 0
|
前端开发
好客租房7-React脚手架的使用
好客租房7-React脚手架的使用
93 0
|
前端开发
好客租房5-React脚手架的应用
好客租房5-React脚手架的应用
117 0
|
JavaScript
好客租房39-react组件基础总结
好客租房39-react组件基础总结
74 0