小程序需要添加简单的数据统计功能。因为对Echats比较熟悉,所以想将Echats引入到项目中,有几点注意事项,记录一下。
taro版本:3.3.2(注意一下版本信息)
官方物料仓库里面的Echarts大多不兼容最新版本taro框架,但是实现的思路都是一样的。大致说一下:
准备工作
-
下载Echarts官方的小程序插件echarts-for-weixin 传送门 -
将项目中的ec-canvas文件夹复制保存 -
去Echarts官网定制图表(不建议全部下载,文件太大,小程序体积大需要分包) 传送门 -
压缩echarts.js文件(压缩方法可以自行找线上压缩网站或自行压缩,方法附后文) -
替换ec-canvas文件中的echarts.js文件
本地压缩方法:
npm install uglify-js -g
uglifyjs echarts.js -m -o echarts.min.js
小程序封装图表组件(以柱状图为例)
import { Component } from "react";
import { View } from "@tarojs/components";
import { getCurrentInstance } from "@tarojs/taro"
import './index.scss'
function setChartData(chart){
const defautOption = {
xAxis: {
type: "category",
data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
},
yAxis: {
type: "value",
},
series: [
{
data: [120, 200, 150, 80, 70, 110, 130],
type: "bar",
showBackground: true,
backgroundStyle: {
color: "rgba(220, 220, 220, 0.8)",
},
},
],
};
chart.setOption(defautOption);
}
export default class BarChart extends Component {
constructor(props) {
super(props)
this.state = {
ec: {
lazyLoad: true
}
}
}
componentDidMount() {
}
refresh(data) {
getCurrentInstance().page.selectComponent('#mychart-area').init((canvas, width, height) => {
const chart = echarts.init(canvas, null, {
width: width,
height: height
});
setChartData(chart, data);
return chart;
});
}
render() {
return (
<View className='bar-chart'>
<ec-canvas
id='mychart-area'
canvasId='mychart-area'
ec={this.state.ec}
/>
</View>
);
}
}
页面使用
import React, { Component } from 'react'
import { View } from '@tarojs/components'
import BarChart from '@/components/barChart'
import './index.scss'
export default class Index extends Component {
constructor (props) {
super(props)
this.barChart = React.createRef()
this.state = {
}
}
componentWillMount () { }
componentDidMount () {
setTimeout(() => {
this.barChart.current.refresh()
}, 100)
}
componentWillUnmount () { }
componentDidShow () { }
componentDidHide () { }
render () {
return (
<View className='selfstudy-container'>
<BarChart ref={this.barChart} />
</View>
)
}
}
------------------------------------------------------至此图表引入已完成90%------------------------------------------------------------- 直接页面使用的话会报两个错误:
- echarts is not defined。(没有拿到ec-canvas页面实例)
解决方法:在 app 或页面配置文件中配置 usingComponents 属性。
export default {
usingComponents: {
'ec-canvas': '../../components/ec-canvas/ec-canvas'
}
}
注意:Taro3 的组件是没有配置文件的,因此 usingComponents 必须配置在“页面”的配置文件中。
- t.addEventListener is not a function
解决方法:在 ec-canvas文件夹下面的wx-canvas.js文件添加代码:
export default class WxCanvas {
constructor(ctx, canvasId, isNew, canvasNode) {
this.ctx = ctx;
this.canvasId = canvasId;
this.chart = null;
this.isNew = isNew
if (isNew) {
this.canvasNode = canvasNode;
}
else {
this._initStyle(ctx);
}
this._initEvent();
}
addEventListener () {}
getContext(contextType) {
if (contextType === '2d') {
return this.ctx;
}
}
}
全文结束,感谢收看,另CSDN博客即日起开始陆续迁移到新博客地址https://ovyvo.github.io/yanblog.github.io/
|