JSON正在重新排序返回的列表

时间:2014-01-27 16:37:56

标签: json

我有一些jQuery会改变选择框的内容,具体取决于另一个选择框的值(它使用AJAX)。 PHP正在以我想要的方式返回数组(按TypeDescriptionData.name排序),但该列表正在JS中的某处重新排序。有什么想法吗?

PHP电话:

public function get_descriptions_by_type($typeId) {
    $this->autoRender = false;

    $this->loadModel('TypeDescriptionData');

    $data = array();

    $this->TypeDescriptionData->contain();
    $descriptions = $this->TypeDescriptionData->find('list', array('conditions' => array('type_data_id' => $typeId), 'order' => 'name ASC'));

    if(isset($descriptions) && is_array($descriptions)) {
        foreach($descriptions as $x => $y) {
            $data[$x] = $y;
        }
    }

    echo json_encode($data);
}

这是上面json_encode php调用之后的JSON:

{
   "1":"FD 50",
   "9":"Hypercom T4210",
   "2":"Hypercom T7P",
   "8":"Hypercom T7Plus",
   "10":"Nurit 2085",
   "11":"Nurit 8400",
   "12":"Nurit 8400 Lite",
   "17":"Other Terminal",
   "13":"Verifone Tranz 330",
   "14":"Verifone Tranz 380",
   "15":"Verifone Vx510",
   "16":"Verifone Vx510 LE"
}

这是JS:

$('#TypeType').change(function() {
    $('#TypeDescription').find('option').remove().end();
    $.ajax({
        url:'/TypeData/get_descriptions_by_type/' + $(this).val(),
        type:'POST',
        dataType: 'json',
        success: function( json ) {
            console.log(JSON.stringify(json));
            $.each(json, function(i, value) {
                $('#TypeDescription').prepend($('<option>').text(value).attr('value', i));
            });
        }
    });
});

如果我添加“console.log(JSON.stringify(json));这是JSON;”紧跟在上面的JS中的“success:function(json){”之后:

{
   "1":"FD 50",
   "2":"Hypercom T7P",
   "8":"Hypercom T7Plus",
   "9":"Hypercom T4210",
   "10":"Nurit 2085",
   "11":"Nurit 8400",
   "12":"Nurit 8400 Lite",
   "13":"Verifone Tranz 330",
   "14":"Verifone Tranz 380",
   "15":"Verifone Vx510",
   "16":"Verifone Vx510 LE",
   "17":"Other Terminal"
}

1 个答案:

答案 0 :(得分:1)

json对象是一个关联数组,因此这两个对象实际上是等价的。基本上计算机不记得顺序,只记住键/值对。如果订单对您很重要,那么您需要使用其他类型的结构。例如,您可以嵌入一个数组:

{
    "beaches" : [
        {"key" : "1", "value" : "FD 50"},
        {"key" : "2", "value" : "Hypercom T7P"},
        {"key" : "8", "value" : "Hypercom T7Plus"}
    ]
}