gpt4 book ai didi

javascript - 如何降低此开关盒的复杂性?

转载 作者:行者123 更新时间:2023-11-30 19:10:58 28 4
gpt4 key购买 nike

我有以下一个 case in switch case,它包含 if else if 语句。我怎样才能降低它的复杂性?有什么简洁的方法可以重构此代码以将 3 分减少到 1 分?

case 'glidepath':             ------->  +1 

if (chartOptions.type === trp.fai.charts.glidepath.types.OVERVIEW) { --->+1
trp.fai.charts.glidepath.drawOverview(chartOptions.data, $chart.attr('id')); }

else if (chartOptions.type === trp.fai.charts.glidepath.types.DETAILS) { -->+1
trp.fai.charts.glidepath.drawDetails(chartOptions.data, $chart.attr('id'));

break;
}

最佳答案

将其拆分为多个函数。

case 'glidepath':
drawTypes(type);
break;
}
// --- END FUNCTION ---------------


function drawTypes(type) {
const {type, data} = chartOptions;
const chart = $chart.attr('id');
cont {glidepath: {types,drawOverview},OVERVIEW,DETAILS} = trp.fai.charts;
if (type === types.DETAILS) { // Put DETAILS first to break out earlier
drawOverview(data, chart);
}
else if (type === types.OVERVIEW) {
drawDetails(data, chart);
}
}

关于javascript - 如何降低此开关盒的复杂性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58479221/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com