如何将多维数组从php传递到带有图像的ajax jquery

时间:2018-06-15 03:58:08

标签: php jquery ajax

$.ajax({
type: 'POST',
url: 'demo.php',
dataType: 'json',
success:function(result)
{
$obj[] = JSON.parse(result);
$('#id1').html($obj[1][1]);
$('#name1').html($obj[1][2]);
php file:=>
while($row = mysqli_fetch_array($result, MYSQLI_BOTH)){
$rows[] = $row; }
echo json_encode($rows);

我不知道如何将$行传递给ajax。($ rows包含2行,4列包含2个图像)。请帮忙。

2 个答案:

答案 0 :(得分:0)

您好,您可以通过以下

执行此操作
var object = {};
object.id = 34;

JSON.stringify(obj);

答案 1 :(得分:0)

$。AJAX({

type: 'POST',
url: 'demo.php',
dataType: 'json',
success:function(data)
{
    for(i=0; i<data.length; i++){
        $('#id1').html(data[i].obj);
    }
}

});

如果这不能用于发布成功功能后的数据