我正在尝试将图像(在 $avatar 中)添加到 cakephp 中的链接,但它显示为文本
echo $this->Html->link( $avatar, '/notifications/ajax_show', array(
'class' => 'overlay',
'title' => 'text' )
));
无法使用 $this->Html->image 的 url 参数,因为我想在 URL 上设置一个类。
我正在尝试将图像(在 $avatar 中)添加到 cakephp 中的链接,但它显示为文本
echo $this->Html->link( $avatar, '/notifications/ajax_show', array(
'class' => 'overlay',
'title' => 'text' )
));
无法使用 $this->Html->image 的 url 参数,因为我想在 URL 上设置一个类。
转义参数不仅有据可查,还有一个完全相同的示例可用: http ://book.cakephp.org/2.0/en/core-libraries/helpers/html.html#HtmlHelper::link