localeCompare在iOS上

时间:2016-05-10 09:09:51

标签: javascript locale string-comparison

我无法将我的javascript本地化字符串比较用于iPad或iPhone上的任何浏览器。有没有人经历过相同或了解它?

我还尝试强制使用瑞典语语言环境来确保从操作系统中获取正确的语言环境不是问题。我仍然无法正确比较特定于语言环境的字符。

let mixedChars = ['å','ä','o']
mixedChars.sort(function(a,b) {return a.localeCompare(b, 'sv-SE')})
alert(JSON.stringify(mixedChars))

// in iOS using Chrome or FF => å,ä,o
// in any other setup I have tried => o,å,ä which is according the Swedish alphabet.

非常感谢任何可能导致这种想法的想法。

1 个答案:

答案 0 :(得分:2)

我没有要测试的iPod或iPhone,但他们的浏览器可能不支持locale与您的语言环境参数比较:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare#Browser_compatibility

如果你知道你将要处理的字母,你可以构造一个字符的枚举(按字母顺序),并用它来排序字符串:

var alphabet, enumeration, comparator, mixedChars, i, c;

alphabet = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
            'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
            'Å', 'Ä', 'Ö', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
            'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
            'x', 'y', 'z', 'å', 'ä', 'ö'];

enumeration = {};

for (i = 0; i < alphabet.length; i += 1) {
    c = alphabet[i];
    enumeration[c] = i;
}

comparator = function (a, b) {
    var j, k, d, x, y;

    k = Math.min(a.length, b.length);
    for (j = 0; j < k; j += 1) {
        x = a[j];
        y = b[j];
        d = enumeration[x] - enumeration[y];
        if (0 !== d) {
            return d;
        }
    }

    if (j < a.length) {
        return 1;
    }

    if (j < b.length) {
        return -1;
    }

    return 0;
};

mixedStrings = [
    'äA',
    'å',
    'ä',
    'äAö',
    'Ä',
    'Äo',
    'äAöO',
    'o'
];

mixedStrings.sort(comparator);

// Alerts, ["Ä","Äo","o","å","ä","äA","äAö","äAöO"]
alert(JSON.stringify(mixedStrings));