当前位置:Gxlcms > PHP教程 > thinkPHP控制器跳转

thinkPHP控制器跳转

时间:2021-07-01 10:21:17 帮助过:5人阅读

thinkphp 跳转

在thinkphp中怎么从indexAction.calss.php中的index 方法中条到homeAction.class.php中的del方法中,


回复讨论(解决方案)

可以用redirect跳转。

返回值= R('跳转的控制 器/方法', 参数 );

返回值= R('跳转的控制 器/方法', 参数 );
调上home下del函数的话可以用2楼这种
如果只是跳转的话可以

$this->redirect("home/del",array());

恩谢谢

人气教程排行