0
我使用下面的代碼片段向服務器發送了一些數據,但我不知道如何使用PHP
檢索返回的數組。感謝您的任何建議。如何在php中檢索json字符串化對象?
$('.ticket-row').each(function() {
tickets.push({ id : $(this).attr('id'),
no : $(this).find('#no').text(),
c_name : $(this).find('#c_name').val(),
next_of_kin: $(this).find('#next_of_kin').val(),
address : $(this).find('#address').val(),
seat_no : $(this).find('#seat_no').val(),
fare : $(this).find('#fare').val() });
});
$.ajax({
type : 'POST',
url : '**URL_HERE**',
data : JSON.stringify(tickets),
dataType : 'json'
});
你試過看$ _POST嗎? – thescientist 2013-02-24 00:20:33
[無法在PHP中使用jquery Json POST參數,但使用Ajax和Normal post](http://stackoverflow.com/questions/14890448/cannot-access-jquery-json-post-parameters-in-php-但是使用ajax和norma) – Musa 2013-02-24 00:21:52
@thescientist是的,我得到以下錯誤「json_decode()期望參數1是字符串,數組給出」 – Chibuzo 2013-02-24 00:24:49