核心代码:
export default class ChartUtil {
static getInstace() {
if (!ChartUtil.instace) {
ChartUtil.instace = new ChartUtil();
console.log('新创建了一个实例');
return ChartUtil.instace;
}
console.log('复用之前的实例');
return ChartUtil.instace;
}
constructor() {
this.initChartLabel();
}
initChartLabel() {
this.lineChartStartLabel = '<objectiveHistory>';
}
}
创建实例:
this.chartUtils = ChartUtils.getInstace();
效果图:
最后
以上就是坚强萝莉最近收集整理的关于ES6 的类中使用单例模式的全部内容,更多相关ES6内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复