本文介绍了“开关"的替代方案陈述的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
我不想在我的代码中使用 Switch,所以我正在寻找一些替代方法
I do not want to use Switch in my code, so I'm looking for some alternative
开关示例:
function write(what) {
switch(what) {
case 'Blue':
alert ('Blue');
break;
...
case 'Red':
alert ('Red');
break;
}
}
不带开关的示例:
colors = [];
colors['Blue'] = function() { alert('Blue'); };
colors['Red'] = function() { alert('Red'); };
function write(what) {
colors[what]();
}
我的问题是:
- 您知道其他替代方案吗?
- 这是最好的解决方案吗?
推荐答案
我只有一个关于你的第二种方法的注释,你 不应使用数组 来存储非数字索引(在其他语言中您可以将其称为关联数组).
I have only a note about your second approach, you shouldn't use an Array to store non-numeric indexes (that you would call in other languages an associative array).
你应该使用一个简单的对象.
You should use a simple Object.
此外,您可能需要检查传递给 write 函数的 what 参数是否作为 colors 对象的属性存在并查看如果它是一个函数,那么您可以在没有运行时错误的情况下调用它:
Also, you might want to check if the what argument passed to your write function exists as a property of your colors object and see if it's a function, so you can invoke it without having run-time errors:
var colors = {};
colors['Blue'] = function() { alert('Blue'); };
colors['Red'] = function() { alert('Red'); };
function write(what) {
if (typeof colors[what] == 'function') {
colors[what]();
return;
}
// not a function, default case
// ...
}
这篇关于“开关"的替代方案陈述的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
The End



大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)