CodeIgniter新闻教程 - 删除和更新

时间:2013-03-09 18:10:35

标签: php codeigniter

我是CodeIgniter的新手,我已按照教程制作新闻应用程序。我现在正在删除和更新新闻文章,但我无法弄清楚如何做到这一点。

这是我到目前为止所提出的,但它不起作用,因为当我点击删除索引中的文章时,所有发生的事情都是我收到一条错误消息:webpage cannot be found

新闻控制员:

<?php
class News extends CI_Controller {

    public function __construct()
    {
        parent::__construct();
        $this->load->model('news_model');
    }

    public function index()
    {
        $data['news'] = $this->news_model->get_news();
        $data['title'] = 'News archive';

        $this->load->view('templates/header', $data);
        $this->load->view('news/index', $data);
        $this->load->view('templates/footer');

    }

    public function view($slug)
    {
        $data['news'] = $this->news_model->get_news($slug);
        if (empty($data['news_item']))
        {
            show_404();
        }

        $data['title'] = $data['news_item']['title'];

        $this->load->view('templates/header', $data);
        $this->load->view('news/view', $data);
        $this->load->view('templates/footer');

    }

    public function create()
    {
        $this->load->helper('form');
        $this->load->library('form_validation');

        $data['title'] = 'Create a news 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('news/create');
            $this->load->view('templates/footer');

        }
        else
        {
            $this->news_model->set_news();
            $this->load->view('news/success');
        }
    }

    public function delete($id) {
        $this->news_model->delete_news($id);
        $this->load->helper('url');
        redirect('/news');
    }

}

news_model:

<?php
class News_model extends CI_Model {

    public function __construct()
    {
        $this->load->database();
    }

    public function get_news($slug = FALSE)
    {
        if ($slug === FALSE)
        {
            $query = $this->db->get('news');
            return $query->result_array();
        }

        $query = $this->db->get_where('news', array('slug' => $slug));
        return $query->row_array();
    }

    public function set_news()
    {
        $this->load->helper('url');

        $slug = url_title($this->input->post('title'), 'dash', TRUE);

        $data = array(
            'title' => $this->input->post('title'),
            'slug' => $slug,
            'text' => $this->input->post('text')
        );

        return $this->db->insert('news', $data);
    }


    public function delete_news($id) 
    {
        $this->db->delete('news', array('id' => $id));
    }

}

索引:

<?php foreach ($news as $news_item): ?>

    <h2><?php echo $news_item['title'] ?></h2>
    <div id="main">
    <?php echo $news_item['text'] ?>
    </div>
    <p><a href="news/<?php echo $news_item['slug'] ?>">View article</a></p>
    <p><a href="news/delete/<?php echo $news_item['id'] ?>">delete article</a></p>

<?php endforeach ?>

1 个答案:

答案 0 :(得分:0)

你必须使用绝对路径

<a href="<?php echo base_url(); ?>news/delete/<?php echo $news_item['id'] ?>">delete article</a>

删除后也在你的控制器中

而不是

redirect('/news');

使用absulot路径或者你可以简单地写

$this->index();