在我的节点为10.14.1的计算机上,它还原订单,在Gitlab(节点:最新)中,测试订单保持不变。
const testData = [
{ name: 'DK', value: 1 },
{ name: 'CZ', value: 1 }
]
testData.sort((a, b) => {
if (a.value === b.value) return 1
return a.value - b.value
})
有什么主意吗?谢谢