我正在制作一个 jQuery 控制台,并且我正在使用一个填充了可用命令的数组来验证用户的输入——例如,如果他们输入help
, if help
is in array.name
,则继续执行下一段代码。
filter
问题是我想在完全失败时显示一条消息,例如“该命令不存在” ,因为 inhelp
根本不在数组中。到目前为止,这是我的代码:
var commands = [
{ 'name': 'help',
'desc': 'display information about all available commands or a singular command',
'args': 'command-name' },
{ 'name': 'info',
'desc': 'display information about this console and its purpose' },
{ 'name': 'authinfo',
'desc': 'display information about me, the creator' },
{ 'name': 'clear',
'desc': 'clear the console' },
{ 'name': 'opensite',
'desc': 'open a website',
'args': 'url' },
{ 'name': 'calc',
'desc': 'calculate math equations',
'args': 'math-equation' },
{ 'name': 'instr',
'desc': 'instructions for using the console' }
];
function detect(cmd) { // function takes the value of an <input> on the page
var cmd = cmd.toLowerCase(); // just in case they typed the command in caps (I'm lazy)
commands.filter(function(command) {
if(command.name == cmd) {
switch(cmd) {
// do stuff
}
}
else {
alert("That command was not found."); // this fires every time command.name != cmd
}
}
}
如果需要,我有一个带有(几乎)所有代码的 jsFiddle。
http://jsfiddle.net/abluescarab/dga9D/
每次找不到命令名称时,else 语句都会触发 - 这很多,因为它正在循环遍历数组。
如果在使用时在数组中的任何位置都找不到命令名称,有没有办法显示消息filter
?
在此先感谢,如果我没有意义并为代码墙道歉,我愿意接受有关替代方法的建议。