私はjQueryコンソールを作成しており、ユーザーの入力を検証するために使用可能なコマンドで満たされた配列を使用しています。たとえば、ユーザーが、を入力help
した場合help
はarray.name
、次のコードに進みます。
問題は、配列にまったく含まれていないためfilter
、完全に失敗したときに「そのコマンドは存在しません」などのメッセージを表示したいということです。help
これまでの私のコードは次のとおりです。
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
か?
事前に感謝します。意味がわからなかった場合はお詫びし、コードの壁をお詫びします。これを行うための代替方法の提案を受け付けています。