我正在使用PHP中的查询从数据库中检索相同数据。我将这些照片作为json发送到Javascript。我在javascript中获取编码的json字符串,然后我解析它
data = JSON.parse(request.responseText);
现在我用html打印数据。一切正常。除了照片。
这就是我打印数据和照片的方式:
tab.innerHTML += "<p>"+data[h].product_name+"</p>";
tab.innerHTML += "<p><img src="+data[h].product_photo+" alt='sorry no image'></p>";
我收到此错误
Not allowed to load local resource: file:///E:/xampp
localhost/:1 GET http://localhost/images/ 404 (Not Found)
alt='sorry:1 GET http://localhost/gamo9/css3_tabbed_nav/alt='sorry 404 (Not Found)
null:1 GET http://localhost/gamo9/css3_tabbed_nav/null 404 (Not Found)
我该怎么办?
答案 0 :(得分:0)
数据[h] .product_photo有什么作用?
它应该是某处加载的图像的URL。 或者它可以是base64编码的图像,您可以使用以下内容显示:
`SRC =“数据:图像/ PNG; BASE64,...........