PHP CodeIgniter 加载视图问题,加载完整路径两次
Posted
技术标签:
【中文标题】PHP CodeIgniter 加载视图问题,加载完整路径两次【英文标题】:PHP CodeIgniter load view issue, loading full path twice 【发布时间】:2017-12-27 21:39:21 【问题描述】:我是 php CodeIgniter 的新手,我正在创建我的第一个应用程序,我已经创建了控制器、模型和视图以将记录添加到我的数据库中,到目前为止一切都很好,
当我点击表单中的“提交”时,问题就开始了,
如果表单中存在问题或重定向到成功页面,它不会再次重定向到同一个表单,而是重定向到同一个页面但完整路径两次,
像这样:
表单页面 - localhost/index.php/news/create
预期结果:
表单数据有效 ->localhost/index.php/news/success
表单无效 -> localhost/index.php/news/create(同一页面)
但是当我点击提交时它会这样做:
localhost/index.php/news/localhost/index.php/news/create
如您所见,它再次采用完整路径并将其放在已经存在的 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);
具有表单创建功能的控制器
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>
【问题讨论】:
您能发布浏览器中显示的表单 html 吗? =======创建新闻项目
创建一个新闻项目
© 2015 ====== 你在 config.php 中的 base_url 设置是什么? 这是我的基本网址:$config['base_url'] = 'localhost';这是我的索引页: $config['index_page'] = 'index.php'; @tobifasc 谢谢你的工作!! 【参考方案1】:感谢@tobifasc 的回答,
问题出在 config.php 中
我换了
$config['base_url'] = 'localhost';
到这里:
$config['base_url'] = 'http://localhost/';
现在一切正常
【讨论】:
【参考方案2】:发生这种情况是因为您已经加载了视图,并且当您的验证再次失败时,您加载了相同的视图,因此您无需再次查看。用此代码替换您的新闻控制器的创建方法 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');
【讨论】:
以上是关于PHP CodeIgniter 加载视图问题,加载完整路径两次的主要内容,如果未能解决你的问题,请参考以下文章