前言
对于Ant Design(移动端)TabBar的使用,一直有bug,百度了很多博客,都没找到解决方法,琢磨了一个小时,写下这篇博客,希望对小白有所帮助,不足之处还请指点一二。
废话不多说,使用之前,别进行弹射,别进行弹射,别进行弹射,最好是初始化的新项目
安装和初始化
$ npm install -g create-react-app
# 注意:工具会自动初始化一个脚手架并安装 React 项目的各种必要依赖,如果在过程中出现网络问题,请尝试配置代理或使用其他 npm registry。
$ create-react-app my-app
$ cd my-app
$ npm start
项目创建成功后,进行安装 Ant Design Mobile
一、安装
$ npm install antd-mobile --save
二、入口页面 (html 或 模板) 相关设置:
这里的入口页面指 public
目录中的 index.html
<!DOCTYPE html>
<html>
<head>
<!-- set `maximum-scale` for some compatibility issues -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
// 第一个需要添加的
<script src="https://as.alipayobjects.com/g/component/fastclick/1.0.6/fastclick.js"></script>
// 第二个需要添加的
<script>
if ('addEventListener' in document) {
document.addEventListener('DOMContentLoaded', function() {
FastClick.attach(document.body);
}, false);
}
if(!window.Promise) {
document.writeln('<script src="https://as.alipayobjects.com/g/component/es6-promise/3.2.2/es6-promise.min.js"'+'>'+'<'+'/'+'script>');
}
</script>
</head>
<body></body>
</html>
三、按需加载
1、安装react-app-rewired
、 customize-cra
,
不知道是啥?没关系!安装就行了
$ npm install react-app-rewired customize-cra --save-dev
2、安装成功后,修改 package.json 里的启动配置,将旧的启动配置 改为 新的启动配置,只改如下三项
/* package.json 旧的 */
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
}
/* package.json 新的 */
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
}
3、安装 babel-plugin-import
【 babel-plugin-import
是一个用于按需加载组件代码和样式的 babel 插件 】
npm install babel-plugin-import --save-dev
4、然后在 项目根目录
下创建一个 config-overrides.js
,代码如下:
const { override, fixBabelImports } = require('customize-cra');
module.exports = override(
fixBabelImports('import', {
libraryName: 'antd-mobile',
style: 'css',
}),
);
完成以上操作,就愉快的使用TabBar标签栏吧!
// 常规引入
import React, { Component } from 'react'
import './App.css';
import { TabBar } from 'antd-mobile';
// 引入组件页面
import Home from './component/home'
import Category from './component/category'
import Cart from './component/cart'
import User from './component/user'
export default class App extends Component {
constructor(props) {
super(props);
this.state = {
// 重定向
selectedTab: 'blueTab',
};
}
// 组件页面跳转
renderContent(com) {
return (
<div>{com}</div>
);
}
render() {
return (
<div style={{ position: 'fixed', height: '100%', width: '100%', top: 0 }}>
<TabBar
unselectedTintColor="#949494"
tintColor="#33A3F4"
barTintColor="white"
>
{/* 首页 */}
<TabBar.Item
title="首页"
key="home"
icon={<div style={{
width: '22px',
height: '22px',
background: 'url(https://zos.alipayobjects.com/rmsportal/sifuoDUQdAFKAVcFGROC.svg) center center / 21px 21px no-repeat'
}}
/>
}
// 选中后的展示图片
selectedIcon={<div style={{
width: '22px',
height: '22px',
background: 'url(https://zos.alipayobjects.com/rmsportal/iSrlOTqrKddqbOmlvUfq.svg) center center / 21px 21px no-repeat'
}}
/>
}
// 是否选中
selected={this.state.selectedTab === 'blueTab'}
// bar 点击触发,需要自己改变组件 state & selecte={true}
onPress={() => {
this.setState({
selectedTab: 'blueTab',
});
}}
>
// 将 home 组件作为实参传递
{this.renderContent(<Home />)}
</TabBar.Item>
{/* 分类 */}
<TabBar.Item
icon={
<div style={{
width: '22px',
height: '22px',
background: 'url(https://gw.alipayobjects.com/zos/rmsportal/BTSsmHkPsQSPTktcXyTV.svg) center center / 21px 21px no-repeat'
}}
/>
}
selectedIcon={
<div style={{
width: '22px',
height: '22px',
background: 'url(https://gw.alipayobjects.com/zos/rmsportal/ekLecvKBnRazVLXbWOnE.svg) center center / 21px 21px no-repeat'
}}
/>
}
title="分类"
key="category"
selected={this.state.selectedTab === 'redTab'}
onPress={() => {
this.setState({
selectedTab: 'redTab',
});
}}
>
{this.renderContent(<Category />)}
</TabBar.Item>
{/* 购物车 */}
<TabBar.Item
icon={
<div style={{
width: '22px',
height: '22px',
background: 'url(https://zos.alipayobjects.com/rmsportal/psUFoAMjkCcjqtUCNPxB.svg) center center / 21px 21px no-repeat'
}}
/>
}
selectedIcon={
<div style={{
width: '22px',
height: '22px',
background: 'url(https://zos.alipayobjects.com/rmsportal/IIRLrXXrFAhXVdhMWgUI.svg) center center / 21px 21px no-repeat'
}}
/>
}
title="购物车"
key="cart"
dot
selected={this.state.selectedTab === 'greenTab'}
onPress={() => {
this.setState({
selectedTab: 'greenTab',
});
}}
>
{this.renderContent(<Cart />)}
</TabBar.Item>
{/* 用户 */}
<TabBar.Item
icon={{ uri: 'https://zos.alipayobjects.com/rmsportal/asJMfBrNqpMMlVpeInPQ.svg' }}
selectedIcon={{ uri: 'https://zos.alipayobjects.com/rmsportal/gjpzzcrPMkhfEqgbYvmN.svg' }}
title="我的"
key="user"
selected={this.state.selectedTab === 'yellowTab'}
onPress={() => {
this.setState({
selectedTab: 'yellowTab',
});
}}
>
{this.renderContent(<User />)}
</TabBar.Item>
</TabBar>
</div>
);
}
}
关于 TabBar 标签栏的更多API,请移驾 官方文档
四、结语
上述依赖,如果一次安装不成功的,就多试几次。众所周知,装依赖跟网络有很大关系,一次安装不成功属于常规操作,一次成功当然最好。