gpt4 book ai didi

javascript - Vue.js orderBy 国字

转载 作者:行者123 更新时间:2023-11-30 16:34:59 24 4
gpt4 key购买 nike

orderBy 将国家/重音字符放在末尾

a b c o u z á č ů ž

在我的语言(捷克语)中正确的顺序应该是

a á b c č o u ů z ž

有什么方法可以让 Vue 像这样排序?谢谢

最佳答案

你可以用String.prototype.localeCompare()来使用Javascript的排序机制。和 locales 参数。

var array = ['a', 'b', 'c', 'o', 'u', 'z', 'á', 'č', 'ů', 'ž'];

array.sort(function (a, b) {
return a.localeCompare(b, 'cz');
});
document.write('<pre>' + JSON.stringify(array, 0, 4) + '</pre>');

关于javascript - Vue.js orderBy 国字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32828176/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com