3

我正在尝试从 cakephp 的 webroot 视图中显示图像。但没有得到任何图像。请帮我;

这段代码是否正确

$this->Html->image('WWW_ROOT . img/upload/aswq.png', array('width'=>'200px'));
4

1 回答 1

5

您可以使用这种方式显示来自 webroot 文件夹的图像。请注意该文件夹已包含在帮助程序img中的路径html

 echo $this->Html->image('upload/aswq.png', array('width' => '200px','alt'=>'aswq'));

将输出:

<img src="/img/upload/aswq.png" alt="aswq" />

让我知道我是否可以为您提供更多帮助。

于 2013-06-01T04:08:54.780 回答