codeigniter小弟我的删除不知道是不能传参还是路由有关问题

WBOY
Release: 2016-06-13 11:52:50
Original
800 people have browsed it

codeigniter我的删除不知道是不能传参还是路由问题

路由是这样的
PHP复制代码
$route['default_controller'] = 'pages/view';
 
$route['content/(:any)'] = 'content/view/$1';
$route['content'] = 'content';
$route['content/del/(:any)'] = 'content/del/$1';
$route['content/add'] = 'content/add';
$route['(:any)'] = 'pages/view/$1';
 
$route['404_override'] = '';
复制代码




控制器是这样的
PHP复制代码
 
        public function __construct()
        {
                parent::__construct();
                $this->load->model('content_model');
        }
        
        public function index()
        {
                $data['title'] = 'Content archive';
                $data['content'] = $this->content_model->get_content();
                
                $this->load->view('templates/header', $data);
                $this->load->view('content/index', $data);
                $this->load->view('templates/footer');
        }
        
        public function view($slug)
        {
                $data['content_item'] = $this->content_model->get_content($slug);
                
                if (empty($data['content_item']))
                {
                        show_404();
                }
                
                $data['title'] = $data['content_item']['title'];
                
                $this->load->view('templates/header', $data);
                $this->load->view('content/view', $data);
                $this->load->view('templates/footer');
        }
        
        public function add()
        {
                $this->load->helper('form');
                $this->load->library('form_validation');
                  
                $data['title'] = 'Add a content item';
                  
                $this->form_validation->set_rules('title', 'Title', 'required');
                $this->form_validation->set_rules('text', 'text', 'required');
                  
                if ($this->form_validation->run() === FALSE)
                {
                        $this->load->view('templates/header', $data);  
                        $this->load->view('content/add');

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!