gpt4 book ai didi

javascript - 从 AJAX 请求中获取 PHP 中的 JSON 数组

转载 作者:行者123 更新时间:2023-11-30 15:14:09 25 4
gpt4 key购买 nike

我正在发送一个包含多个数组的 AJAX 请求,但我不知道如何获取数据?

这是我要发送的内容:

enter image description here

我通过将 jQuery AJAX POST 发送到 PHP 文件来执行此操作。如何从此处获取数据?

谢谢!

-- 编辑!!

这是 jQuery

var h1 = []
h2 = []
h3 = [],
layout = $( "input[type=radio][name='layout_option']:checked" ).val();

$("ul.widget-order[name='1'] li").each(function() { h1.push($(this).attr('id')); });
$("ul.widget-order[name='2'] li").each(function() { h2.push($(this).attr('id')); });
$("ul.widget-order[name='3'] li").each(function() { h3.push($(this).attr('id')); });

var sendData = JSON.stringify({
ids1: " " + h1 + "",
ids2: " " + h2 + "",
ids3: " " + h3 + ""
});

$.ajax({
type: "POST",
url: "_backend/account/updateWidgets.php",
data: { data: sendData } + '&layout=' + layout,
success: function( data ){
$("#post_reply").html(data);
console.log( { data: sendData } );
)};
)};

最佳答案

在 PHP 端读取 JSON 编码的数据:

<?php

$json = file_get_contents('php://input');
$decodedJSON = json_decode($json);

?>

http://php.net/manual/en/function.json-decode.php

关于javascript - 从 AJAX 请求中获取 PHP 中的 JSON 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44711778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com