我在这里遇到问题,我认为这里的一些专业人士可以帮助我。
目前,我创建了一个带有cakephp2的网站,并实现了jquery mobile。 问题是下面的链接不起作用。每当我尝试使用链接时,它会显示一个黄色对话框,显示“错误加载页面”。
<a data-rel="back">Return</a> <?php echo $this->Html->link('Home',array('action'=>'index'),array('data-icon'=>'home','data-iconpos'=>'notext)));?></div>
答案 0 :(得分:1)
<?php echo $this->Html->link('Home',
array(
'controller'=>'your_controller', //Write here controller name
'action'=>'index'),
array(
'data-icon'=>'home',
'data-iconpos'=>'notext'))); //Here you missing single quote
?>