1

我已经创建了一个更新功能,但我不断收到 404 错误,我无法弄清楚似乎是什么问题。感谢您的帮助。

控制器news.php

 public function update($id)

    {
    $id = $this->uri->segment(3);
    $data = array(
   'title' => $this->input->post('title'),
   'text' => $this->input->post('text'),
   'slug' => $this->input->post('slug'),
    );
   if($this->news_model->exists($id)) {
   $this->news_model->update($id, $data);
   } else {
   $this->news_model->insert($data);
  }

  }

news_model.php

public function update_news($id, $data)
{
$this->db->where('id', $id);
$this->db->update('news', $data); 
}

路线

$route['news/update/(:num)'] = 'news/update/$1';

意见

更新.php

 <h2>Update an item</h2>

 <?php echo validation_errors(); ?>

 <?php echo form_open('/news/update'.$news_item['id']) ?>


<label for="title">Title</label> 
<input type="input" name="title" /><br />

 <label for="slug">Slug</label> 
 <input type="input" name="slug" /><br />

<label for="text">Text</label>
 <textarea name="text"></textarea><br />

 <input type="submit" name="submit" value="Update an item" /> 

 </form>  

索引.php

 <p><a href="news/update/<?php echo $news_item['id'] ?>">update article</a></p>
4

3 回答 3

0

尝试加载 URL 帮助程序,并从 config 文件夹中的配置文件设置base_url为 yourpath 或 yourpath/index.php 如果您使用 index.php 作为 ex。http://localhost/codeigniter/index.php,并将视图更新为 <?php echo form_open(base_url() . 'news/update/'.$news_item['id']) ?>

于 2013-03-11T02:02:51.143 回答
0

我认为您在打开的表单中缺少正斜杠。你有

<?php echo form_open('/news/update'.$news_item['id']) ?>

但应该是

<?php echo form_open('/news/update/'.$news_item['id']) ?>

我也同意@Mohamed Nagy,您应该加载 url 帮助程序并使用 base_url()

我注意到的其他几件事是,在您的模型中,您的更新函数称为 update_news(),但在您的控制器中,您调用的是 update()。这可能会导致错误

另外,当您将 id 传递给函数时,为什么还要使用$this->uri->segment(3);它来获取它?

于 2013-03-11T10:27:57.647 回答
0

提交表单时收到 404 吗?

尝试将表单打开更改为:

<?php echo form_open($news_item['id']) ?>

或者如果您激活了 uri 助手:

<?php echo form_open(base_url() . 'news/update/'.$news_item['id']) ?>
于 2013-03-10T22:32:28.240 回答