6

我有一个对象,它有一对用于简单编码/解码的替换值(不是为了安全,只是为了方便;这里解释得太复杂了)。它的形式

var obj = {x: y,
           x: y,
           ...
          };

其中“x”是编码时的值,“y”是解码后的值。

解码很简单:我遍历字符串的字符,并charAt(i)通过括号查找对象中的值:obj[ str.charAt(i) ]. (我忽略了检查是否需要大写或小写版本(对象中的所有键/值都是小写的),但这很简单。)

要进行编码,我当然必须在对象中查找值,而不是属性。目前,我正在使用循环遍历属性for ... in ...并根据值检查charAt(i)值。我目前的代码是:

var i, j,
    output = '',
    str = 'Hello World!',
    obj = {'s':'d',
           'm':'e',
           'e':'h',
           'x':'l',
           'z':'o',
           'i':'r',
           'a':'w',
           'o':'!',
           '-':' '};
for (i = 0; i < str.length; i++) {
    for (j in obj) {
        if (Object.prototype.hasOwnProperty.call(obj, j) &&
            Object.prototype.propertyIsEnumerable.call(obj, j)) {
            if (obj[j] === str.charAt(i)) {
                output += j;
                break;
            } else if (obj[j].toUpperCase() === str.charAt(i)) {
                output += j.toUpperCase();
                break;
            }
        }
    }
}
alert(output);

我天生觉得应该有一种更有效的方法来做到这一点。(当然有一个颠倒的对象,{y: x},是一种选择。但不是一个好方法。)这是最好的方法,还是有更好的方法?从本质上讲,我希望能够var prop = obj[value]像我能做的那样做var value = obj[prop]

4

4 回答 4

6

预先循环一次以创建反向映射更有效:

var str = "Hello World!",
    output = '',
    map = {
      "s":"d", "m":"e",
      "e":"h", "x":"l",
      "z":"o", "i":"r",
      "a":"w", "o":"!",
      "-":" "
    },
    reverseMap = {}

for (j in map){
  if (!Object.prototype.hasOwnProperty.call(map, j)) continue
  reverseMap[map[j]] = j
}

output = str.replace(/./g, function(c){
  return reverseMap[c] || reverseMap[c.toLowerCase()].toUpperCase()
})

console.log(output)

而不是做str.length * map.length,你会做map.length + str.length操作。

于 2012-06-11T05:08:50.370 回答
3

反向编码器会更有意义,但您可以编写替换函数而无需所有 hasOwnProperty 等测试。

var str= 'Hello World!',
obj={
    's':'d',
    'm':'e',
    'e':'h',
    'x':'l',
    'z':'o',
    'i':'r',
    'a':'w',
    'o':'!',
    '-':' '
}
str= str.replace(/./g, function(w){
    for(var p in obj){
        if(obj[p]=== w) return p;
        if(obj[p]=== w.toLowerCase()) return p.toUpperCase();
    };
    return w;
});

返回值:(字符串)Emxxz-Azixso

于 2012-06-11T04:45:50.587 回答
2

您可以通过编程方式(而不是手动)创建映射的反转版本并使用它。

var rev = {}
for (key in obj)
    rev[obj[key]] = key
于 2012-06-11T04:30:26.460 回答
0

如果您正在寻找数组键,请查看此处。

https://raw.github.com/kvz/phpjs/master/functions/array/array_keys.js

function array_keys (input, search_value, argStrict) {
    var search = typeof search_value !== 'undefined', tmp_arr = [], strict = !!argStrict, include = true, key = '';

    if (input && typeof input === 'object' && input.change_key_case) {
        return input.keys(search_value, argStrict);
    }

    for (key in input) {
        if (input.hasOwnProperty(key)) {
            include = true;
            if (search) {
                if (strict && input[key] !== search_value) include = false;
                else if (input[key] != search_value) include = false;
            }
            if (include) tmp_arr[tmp_arr.length] = key;
        }
    }

    return tmp_arr;
}
于 2012-06-11T04:39:11.413 回答