在React中封裝Echarts有多種方法,以下是一種常見(jiàn)的封裝方式:
npm install echarts --save
EchartsComponent.js
:import React, { useEffect, useRef } from 'react';
import echarts from 'echarts';
const EchartsComponent = ({ options }) => {
const chartRef = useRef(null);
useEffect(() => {
const chart = echarts.init(chartRef.current);
chart.setOption(options);
return () => {
chart.dispose();
};
}, [options]);
return <div ref={chartRef} style={{ width: '100%', height: '300px' }} />;
};
export default EchartsComponent;
EchartsComponent
組件:import React from 'react';
import EchartsComponent from './EchartsComponent';
const ParentComponent = () => {
const options = {
// Echarts配置項(xiàng)
// ...
};
return (
<div>
<h1>使用Echarts的父組件</h1>
<EchartsComponent options={options} />
</div>
);
};
export default ParentComponent;
在上述示例中,EchartsComponent
接收一個(gè)options
參數(shù),用于配置Echarts的圖表選項(xiàng)。通過(guò)useRef
創(chuàng)建一個(gè)DOM引用,useEffect
用于在組件掛載和options
變化時(shí)初始化Echarts實(shí)例并設(shè)置選項(xiàng)。在組件卸載時(shí),通過(guò)return
語(yǔ)句中的函數(shù)清理Echarts實(shí)例。
通過(guò)這種方式,我們可以在React中封裝Echarts,并通過(guò)組件的props屬性傳遞不同的選項(xiàng)來(lái)渲染不同的圖表。