我正在尝试将图像显示在杯形蛋糕论坛中,但它没有显示。只显示alt。有人能告诉我我做错了什么吗?我的代码:
<?php echo $html->image('/forum/vendors/img/goto.png', array('alt' => 'goto', 'url' => array('controller' => 'topics', 'action' => 'view', $category['lastTopic_id'], 'page' => $category['LastTopic']['page_count'], '#' => 'post_'. $category['lastPost_id']))); ?>
谢谢。
答案 0 :(得分:1)
Cakephp的图片网址是相对于/ app / webroot / img /的,所以假设你的应用名为merry_flowers,你应该有:
<?php echo $html->image('../../plugins/forum/vendors/img/goto.png', /*Rest goes here */; ?>
或类似的东西,具体取决于您的目录结构。