如何在ajax调用上显示图像

时间:2017-09-27 06:50:50

标签: php arrays json ajax

我创建了一个用户搜索引擎,显示用户的详细信息,我还想显示他们的个人资料图片。

的index.php

if (account !="") {
$.ajax({
    url:"profile.php",
    method:"POST",
    data:{
        number:account,
    },
    dataType:"JSON",
    success: function(data) {
        $("#image").html('<img src="data:image/png;base64,' + data + '" />');
        $("#name").text(data.name);
        $("#phone").text(data.phone);
        $("#email").text(data.email);
    },
    error: function(err) {    
        alert("Result is not found");
    }
});
}

2 个答案:

答案 0 :(得分:0)

function(data) {
                                    return '<img src="'+data+'" class = "img-circle" hight = "50" width = "50" />';
                                    }                           

After fetching you data please update the render function to put you image property in that function

答案 1 :(得分:0)

我用这个解决了我的问题

$("p").html('<img src="' + data.image + '" />');

感谢。