传递参数以查看在Codeigniter 3中提供无限循环/页面刷新

时间:2018-11-05 03:31:23

标签: php codeigniter

我对CodeIgniter 3有一些问题。 当我尝试使用类似http://localhost/crm/Customer/update/3

的参数访问URL时

结果是无限循环页面刷新。 如果我访问其他视图或URL,则不会发生这种情况。

例如:http://localhost/crm/Customer/list

下面是我的控制器文件:

class Customer extends CI_Controller {
    function __construct() {
        parent::__construct();
        $this->load->helper(array('form', 'url', 'customer'));
        $this->load->database();
        $this->load->library('session');
        $this->load->model(array('Auth', 'Model_customer'));
        $this->_init();
    }

    function _init() {

        $this->output->set_template('index');
        // $this->load->section('sidebar','template/sidebar');
    }

    public function index(){
        ...
        $this->load->view('customer/index');
    }

    function update($id) {

        // TEST
        $data['id'] = $id;
        $this->load->view('customer/update2', $data);
    }
}

任何帮助都是有价值的。谢谢

0 个答案:

没有答案