Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 cakephp 的 webroot 视图中显示图像。但我没有得到任何图像。请帮我;
这段代码是否正确
$this->Html->image('WWW_ROOT . img/upload/aswq.png', array('width'=>'200px'));
您可以使用这种方式显示来自 webroot 文件夹的图像。请注意该文件夹已包含在帮助程序img中的路径html
img
html
echo $this->Html->image('upload/aswq.png', array('width' => '200px','alt'=>'aswq'));
将输出:
<img src="/img/upload/aswq.png" alt="aswq" />
让我知道我是否可以为您提供更多帮助。