我正在JS中构建一个数组,如下所示:
var slots = {};
$(".taken").each(function(item) {
var key = $(this).attr("id");
slots[key] = "<?php echo $_SESSION['alias']; ?>";
});
var json = JSON.stringify(slots);
var date = "<?php echo $_GET['date']; ?>"
$.ajax({
type: "POST",
url: "controllers/dutyupdate2.php",
data:{ array : json, date: date },
success : function(response){
console.log (response)
}//end success
});//end ajax
在我发布的 PHP 脚本中,我需要对其进行解码以匹配以下格式:
array( 'D1P'=>"JohnC" , 'D6E' => "JohnC")
我得到:
Array(
[D2E] => JohnC
[D6E] => JohnC
[D3BU] => JohnC
)
无论我如何解码数组,我都会得到一个以我的键为索引的索引数组。我是在 JS 代码中错误地构建数组还是解码错误?
提前致谢