我的数据库中有几个图像链接。这些链接是绝对网址。
我的问题是,蛋糕不会显示图像。
我的观点:
<h2><?php echo h($item['Item']['title']); ?></h2>
<img src="<?php echo h($item['Item']['cover']); ?>">
显示:
"My title" (in h2)
and no image
Firebug 输出如下,“img”标签显示为灰色:
<h2>My title</h2>
<img src="http://example.com/images/SY317.jpg">
为了测试,我已经从 webroot/css 中删除了所有的 css 文件。
有人知道我的错误在哪里吗? 我想不通。