沒有顯示我有一個頁面是由ID訪問e.g http:/localhost/v2/indicator/details/directives/4
404頁的笨
但是當我刪除id
e.g http:/localhost/v2/indicator/details/directives
或http:/localhost/v2/indicator/details/directives/mail.html
它仍試圖訪問該頁面,並給我的錯誤。 我希望它給我一個404找不到頁面,我有。
錯誤
Message: Missing argument 2 for Indicator::details()
Filename: controllers/Indicator.php
Line Number: 140
Backtrace:
File: C:\wamp\www\v2\application\controllers\Indicator.php Line: 140
Function: _error_handler
File: C:\wamp\www\v2\index.php Line: 315 Function: require_once
Severity: Notice
Message: Undefined variable: id
Filename: controllers/Indicator.php
Line Number: 154
Backtrace:
File: C:\wamp\www\v2\application\controllers\Indicator.php Line: 154
Function: _error_handler
File: C:\wamp\www\v2\index.php Line: 315 Function: require_once
對於細節
控制器部public function details($directive, $id) {
$this->data['current_user_menu'] = '';
if($this->ion_auth->in_group('admin'))
{
$data['user'] = $this->ion_auth->user()->row();
$data['indicators'] = $this->core->getIndicators();
// load views and send data
$this->data['current_user_menu'] = $this->load->view('header', $data);
$this->data['current_user_menu'] = $this->load->view('templates/view_indicator', $data);
$this->data['current_user_menu'] = $this->load->view('footer_main');
}
else
{
//If no session, redirect to login page
redirect('auth/login');
}
}
視圖有
<?php $in_id = $this->uri->segment(4);?>
自定義404控制器
class My404 extends CI_Controller
{
public function __construct()
{
parent::__construct();
}
public function index()
{
$this->layout->set_body_attr(array('class' => 'gray-bg'));
$this->layout->add_css_files(array('bootstrap.min.css'), base_url().'assets/css/');
$this->layout->add_css_files(array('font-awesome.css'), base_url().'assets/font-awesome/css/');
$this->layout->add_css_files(array('animate.css','style.css'), base_url().'assets/css/');
$this->output->set_status_header('404');
$this->load->view('404');//loading in my template
}
}
我們不能做你的代碼,你應該張貼您的'指標::細節()'控制器的代碼。 –
@ArshSingh我已經做了一些編輯,如果這會對我有幫助 –