2013-02-12 103 views
0

這是生成數組並將其POST到我的後端API的代碼。 在後端,我在$ page ['body']和print_r($ page)中存儲$ _POST,嘗試測試以確保我發送的數據正確顯示並格式正確。結果如下。 JavaScript和我不是朋友,因此非常感謝修復陣列的任何指針/提示。動態數組有問題

如果您查看[body]索引中的響應,那麼JavaScript傳遞的數據會顯示爲'undefined'。我不確定是什麼導致了這一點。

請求

$('#find_carriers').click(function(){ 

     var data = new Array(); 

     data.push({ 'general': { 
        'shipper': $('#shipper_zip').val(), 
        'consignee': $('#consignee_zip').val(), 
        'shipment_type': $('#direction').val(), 
        'total_weight': $('#total_weight').val() 
       } 
      } 
     ); 

     $('#accessorials').find('input:checkbox:checked').each(function(acc_index){ 

      data.push({'accessorials': {acc_index : $(this).val() } }); 

     }); 

     $('#units').find('table.unit').each(function(unit_index){ 

      data.push({'units': { unit_index : { 
          'num_of': $(this).find('.unit_num_of').text(), 
          'type': $(this).find('.unit_type').text(), 
          'weight': $(this).find('.unit_weight').text() 
         } 
        } 
       } 
      ); 

      $(this).find('tbody.products tr').each(function(product_index){ 

       data.push({'products': { product_index : { 
           'pieces': $(this).find('td.pieces').text(), 
           'weight': $(this).find('td.weight').text(), 
           'class': $(this).find('td.class').text() 
          } 
         } 
        } 

       ); 

      }); 

     }); 

     $.post('index.php?p=api&r=text&c=ctsi&m=lcc', data, function(resp){ 
      alert(resp); 
     }); 

     return false; 

    }); 

響應

Array 
(
    [user] => Array 
    (
     [id] => 33 
     [name] => user 
     [authenticated] => 1 
     [level] => user 
    ) 

[title] => 
[body] => Array 
    (
     [undefined] => 
    ) 

[message] => Array 
    (
    ) 

PHP

public function lcc($data) { 

    global $page; 

    if($page['user']['level'] != "user") { 

     $this->errorState = 1; 
     $this->errorMessage = "Access denied."; 

     return FALSE; 

    } 

    $page['body'] = $_POST; 

} 

PHP來處理傾銷

case 'text': 

    print_r($page); 

break; 
+0

什麼問題是什麼呢? – 2013-02-12 18:26:40

+0

問題具體是什麼? – 2013-02-12 18:27:11

+0

對不起,如果你看看響應部分,[body] => array([undefined] =>),這是來自JS的發佈數據的存儲位置。我傳遞的數組實際上正在通過。我不知道這是因爲我的陣列有缺陷還是其他問題。 – DavidScherer 2013-02-12 18:29:49

回答

0

更改JavaScript以以下工作:

$('#find_carriers').click(function(){ 

    var data = new Object(); 

    data.general = { 
     'shipper': $('#shipper_zip').val(), 
     'consignee': $('#consignee_zip').val(), 
     'shipment_type': $('#direction').val(), 
     'total_weight': $('#total_weight').text() 
    }; 

    data.accessorials = []; 

    $('#accessorials').find('input:checkbox:checked').each(function(acc_index){ 


     data.accessorials.push($(this).val()); 

    }); 

    alert('hello') 

    data.units = []; 
    data.products = []; 

    $('#units').find('table.unit').each(function(unit_index){ 

     data.units.push({ 
      'num_of': $(this).find('.unit_num_of').text(), 
      'type': $(this).find('.unit_type').text(), 
      'weight': $(this).find('.unit_weight').text() 
     }); 

     $(this).find('tbody.products tr').each(function(product_index){ 

      data.products.push({ 
       'pieces': $(this).find('td.pieces').text(), 
       'weight': $(this).find('td.weight').text(), 
       'class': $(this).find('td.class').text() 
      }); 

     }); 

    }); 

    $.post('index.php?p=api&r=text&c=ctsi&m=lcc', data, function(resp){ 
     alert(resp); 
    }); 

    return false; 

}); 

結果

Array 
(
[user] => Array 
    (
     [id] => 33 
     [name] => user 
     [authenticated] => 1 
     [level] => user 
    ) 

[title] => 
[body] => Array 
    (
     [general] => Array 
      (
       [shipper] => 
       [consignee] => 
       [shipment_type] => Outbound/Prepaid 
       [total_weight] => 2 
      ) 

     [accessorials] => Array 
      (
       [0] => 17 
       [1] => 19 
      ) 

     [units] => Array 
      (
       [0] => Array 
        (
         [num_of] => 1 
         [type] => Bobs 
         [weight] => 1 
        ) 

       [1] => Array 
        (
         [num_of] => 1 
         [type] => Bobs 
         [weight] => 1 
        ) 

      ) 

     [products] => Array 
      (
       [0] => Array 
        (
         [pieces] => 1 
         [weight] => 1 
         [class] => 
        ) 

       [1] => Array 
        (
         [pieces] => 1 
         [weight] => 1 
         [class] => 
        ) 

       [2] => Array 
        (
         [pieces] => 1 
         [weight] => 1 
         [class] => 
        ) 

      ) 

    ) 

[message] => Array 
    (
    ) 

) 
+0

我不確定爲什麼必須這樣做。只要說JS讓我想找到離它最近的高速公路並跳轉的最近的橋樑就足夠了。 – DavidScherer 2013-02-12 21:09:17