我是PHP CodeIgniter的新手,我正在创建我的第一个应用程序,我创建了控制器,模型和视图,以便将记录添加到我的数据库中,到目前为止一直很好,
当我点击表单中的“提交”时,问题就开始了
如果表单中存在问题或重定向到成功页面,而不是重定向到同一表单,它会重定向到同一页面,但会使用完整路径两次,
像这样:表单页面 - localhost / index.php / news / create
预期结果:
表单数据有效 - > localhost / index.php / news / success
表单无效 - > localhost / index.php / news / create(同页)
但是当我点击提交时它会这样做:
本地主机/ index.php的/消息/本地主机/ index.php的/消息/创建
正如您所看到的,它再次采用完整路径并将其放在已存在的URL之后。
这是我的代码
routes.php文件
$route['news/create'] = 'news/create';
$route['news/(:any)'] = 'news/view/$1';
$route['news'] = 'news';
$route['(:any)'] = 'pages/view/$1';
$route['default_controller'] = 'pages/view';
$route['news/create'] = 'news/create';
主控制器
public function view($page = 'home')
{
if ( ! file_exists(APPPATH.'views/pages/'.$page.'.php'))
{
// Whoops, we don't have a page for that!
show_404();
}
$data['title'] = ucfirst($page); // Capitalize the first letter
$this->load->view('templates/header', $data);
$this->load->view('pages/'.$page, $data);
$this->load->view('templates/footer', $data);
}
具有函数create
的函数的控制器class News extends CI_Controller {
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 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);
}
表格
<h2><?php echo $title; ?></h2>
<?php echo validation_errors(); ?>
<?php echo form_open('news/create'); ?>
<label for="title">Title</label>
<input type="input" name="title" /><br />
<label for="text">Text</label>
<textarea name="text"></textarea><br />
<input type="submit" name="submit" value="Create news item" />
</form>
答案 0 :(得分:1)
感谢@tobifasc的回答,
问题在于config.php
我替换了
$config['base_url'] = 'localhost';
到此:
$config['base_url'] = 'http://localhost/';
现在一切正常
答案 1 :(得分:0)
这种情况正在发生,因为您已经加载了视图,当您的验证再次失败时,您加载了相同的视图,因此您无需再次查看。用以下代码EX:
替换您的新闻控制器的创建方法class News extends CI_Controller {
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)
{
}
else
{
$this->news_model->set_news();
$this->load->view('news/success');
}
}
}