我是代码点火器框架的新手。我有问题从控制器调用视图。
我的应用程序/控制器/文件夹中有3个三个控制器
employee.php
,home.php
和dashboard.php
和我的views / template /文件夹中的5个视图
header.php
,footer.php
,sidebar.php
,template.php
和topmenu.php
和我的主视图文件夹中的3个视图
addEmployee.php
,home.php
和dashboard.php
我能够点击主页和仪表板控制器,但无法点击员工控制器来加载addEmployee视图。
这是我的addEmployee.php视图
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
<title>Add Employee</title>
<div class="main-content">
<?php include 'template/topmenu.php' ?>
<!-- PAGE CODE STARTS BELOW FROM HERE -->
</div>
employee.php控制器
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Employee extends CI_Controller {
public function __construct() {
parent::__construct();
$this -> load -> model('employee_model');
}
public function index() {
$data['header'] = 'template/header';
$data['sidebar'] = 'template/sidebar';
$data['main_content'] = 'addEmployee';
$data['footer'] = 'template/footer';
$this->load->view('template/template',$data);
}
function functionToTestgetAndSaveEmployeeDetailsResult() {
$result = $this -> getAndSaveEmployeeDetails();
print_r($result);
}
}
?>
template / template.php视图
<?php defined( 'BASEPATH') OR exit( 'No direct script access allowed'); ?>
<?php
$this->load->view($header);
$this->load->view($sidebar);
$this->load->view($main_content);
$this->load->view($footer);
?>
的.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
配置/ config.php中
$config['base_url'] = 'http://localhost:8050/test/';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';
我正在使用此网址访问视图
http://localhost:8050/test/ for home
http://localhost:8050/test/dashbaord for dashbaord
http://localhost:8050/test/addEmployee for addEmployee
主页和信息中心视图由此工作,但 addEmployee 却没有。
我也试过这些网址但没有运气
http://localhost:8050/test/employee/addEmployee
http://localhost:8050/test/index.php/addEmployee
http://localhost:8050/test/index.php/employee/addEmployee
任何想法,这个addEmployee视图有什么问题?或任何链接?
答案 0 :(得分:1)
好像你可能使用了错误的网址。要访问使&#34; addEmployee&#34; &#34; main_content&#34;尝试
http://localhost:8050/test/employee
该网址将投放Employee::index()