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

时间:2018-10-17 07:23:27

标签: codeigniter

请查看文件目录

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

// at 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

1 个答案:

答案 0 :(得分:-2)

请用于从CI中的参数获取值

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

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