如何使用 jquery mobile 重定向到 cakephp 2 中的另一个操作?

How to redirect to other action in cakephp2 with jquerymobile?

我在这里遇到了问题,我认为这里的一些专家可以帮助我。

目前,我用cakephp2 制作了一个网站,并且已经实现了jquery 移动版。 问题是下面的 link 不起作用。每当我尝试使用 link 时,它都会显示一个黄色对话框,上面写着 "Error loading page" .

<a data-rel="back">Return</a> <?php echo $this->Html->link('Home',array('action'=>'index'),array('data-icon'=>'home','data-iconpos'=>'notext)));?></div>
<?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
?>