发送数组ajax.request原型

时间:2012-08-13 13:57:58

标签: javascript prototypejs

我被困在这里通过原型ajax.request方法将数组发送到PHP脚本。

我的数组构建在javascript端:就像这样

attributeArray = new Array();

//This line of code is actually inside a loop 
attributeArray[id] = value;
//loop end
new Ajax.Request(reloadurl, {
    method: 'post',
    parameters: {'id[]':attributeArray},
    onComplete: function(transport) {
    $('load-map-fields').innerHTML = "";
    $('load-map-fields').innerHTML = transport.responseText;

    }
    });

在PHP脚本中我得到了这个数组

Array ( [id] => Array ( [0] => special_price [1] => tier_price ) )

请注意值special_pricetier_price的索引号为01。这些不是我传递的实际索引,无论我构建什么索引,它都会从0重新索引它们。这对我没用,因为我需要实际的索引ID和值。

1 个答案:

答案 0 :(得分:0)

您应该使用哈希而不是数组。像

attributeArray = {}