export const typeMarry = (type) => {
const charts = ['pie','bar','line'],
text = ['normalText','multText'],
media = ['file','picture','music','video']
if(charts.indexOf(type) !== -1) {
return 'CHARTS'
}
if(text.indexOf(type) !== -1) {
return 'TEXT'
}
if(media.indexOf(type) !== -1) {
return 'MEDIA'
}
}
这个方法如何改写成维护性高写法,类似于策略模式?
MYYA
一只甜甜圈
ibeautiful
相关分类