如何使用 2 参数重定向到文件夹 CI 中的不同控制器的方法?



>请参阅文件目录

controller
-student
--dashboard_student.php
--edit_profile.php

//在edit_profile.php

public function method1(){
$parameter_1='XYZ';
$parameter_2='ABC';
redirect('student/dashboard_student/method2/'.$parameter_1.'/'.$parameter_2); 
}

//在dashboard_student.php

public function method2($parameter_1,$parameter_2){
echo $parameter_1.','.$parameter_2;
}

当我运行此代码时,发现:

404 Page Not Found
The page you requested was not found.

但期待:

XYZ,ABC

请使用 CI 中的参数获取值

$this->uri->segment(x);

其中 x 属于您的参数编号。

相关内容

  • 没有找到相关文章

最新更新