1

我正在制作一个 jQuery 控制台,并且我正在使用一个填充了可用命令的数组来验证用户的输入——例如,如果他们输入help, if helpis 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

在此先感谢,如果我没有意义并为代码墙道歉,我愿意接受有关替代方法的建议。

4

1 回答 1

1
function get_command(command_name) {

    var results = {};
    for (var key in commands) (function(name, desc, command) {

        if (name == command_name) (function() {

            results = command;
        }());

    }(commands[key]["name"], commands[key]["desc"], commands[key]));

    return (results);
};

get_command("help");

而不是 switch 是尝试过滤方法功能:

commands.filter = (function(command, success_callback, fail_callback) {

    if (get_command(command)["name"]) (function() {

       success_callback();
    }());

    else (function() {


        fail_callback();
    }());
});


commands.filter("help", function() {

    console.log("enter help command source :)");
}, function() {

    console.log("hey help command???");
});

别紧张。

于 2012-09-17T13:33:14.880 回答