Chrome 和 IE 自动对 JSON 对象进行排序,如何禁用此功能?

问题描述 投票:0回答:1

我正在使用以下 JSON 通过 JavaScript 创建一些复选框。

{"5":"5.5\" x 8.5\"",
"11":"7\" x 10\"",
"4":"8.5\" x 11\"",
"8":"8.5\" x 14\"",
"12":"10\" x 7\"",
"2":"11\" x 8.5\"",
"10":"11\" x 17\"",
"6":"14\" x 8.5\"",
"9":"17\" x 11\""})

创建这些复选框的 JavaScript 是:

for(id in dimensions) {
    $("#the_dimensions").append('<label class="checkbox">' + 
                                '<input type="checkbox" class="dimensions-filter" value="' + id + '">' +
                                dimensions[id] + '</label>');
}

在 Firefox 上,复选框是根据 JSON 对象中的顺序创建的。因此,“5”:“5.5 \” x 8.5 \“”成为第一个元素,“11”:“7 \” x 10 \“”成为第二个元素,依此类推。

但在 Chrome 和 IE 上,JSON 对象会自动按键升序排序。因此, "2":"11\" x 8.5\"" 成为第一个元素, "4":"8.5\" x 11\"" 成为第二个元素,依此类推。

如何在 Chrome 和 IE 上禁用自动排序?

javascript json google-chrome object internet-explorer
1个回答
15
投票

这里同样的问题。我的 JSON 对象如下所示:

{
  "15" : { "name" : "abc", "desc" : "Lorem Ipsum" },
  "4"  : { "name" : "def", "desc" : "Foo Bar Baz" },
  "24" : { "name" : "ghi", "desc" : "May be" },
  "8"  : { "name" : "jkl", "desc" : "valid" }
}

该对象在服务器上按名称排序(A-Z 术语表),我想用以下内容渲染列表:

var data = myObject, i;

console.log(data);

for (i in data) {
    if (data.hasOwnProperty(i)) {
         // do stuff
    }
}

Chrome 日志:

Object {4: Object, 8: Object, 15: Object, 24: Object}

我的 for-in 循环导致错误的排序。它是由浏览器自动排序的,但我需要 ID。

我的解决方案:
我决定更改带有前缀下划线的键。我的对象现在看起来:

{
  "_15" : { "name" : "abc", "desc" : "Lorem Ipsum" },
  "_4"  : { "name" : "def", "desc" : "Foo Bar Baz" },
  "_24" : { "name" : "ghi", "desc" : "May be" },
  "_8"  : { "name" : "jkl", "desc" : "valid" }
}

Chrome 现在记录:

Object {_15: Object, _4: Object, _24: Object, _8: Object}

我的列表已正确呈现。

© www.soinside.com 2019 - 2024. All rights reserved.