简体   繁体   English

Codeigniter和杂货杂货安装

[英]codeigniter & grocery crud installation

i'm having problem with codeigniter + grocery crud installation. 我在Codeigniter +杂货杂货安装中遇到问题。

Below is my file structure: 下面是我的文件结构:

base/ci_213/application/demo/config/config.php
                $config['base_url'] = 'http://localhost/';
                $config['index_page'] = '';

base/ci_213/application/demo/config/autoload.php
                $autoload['libraries'] = array('database', 'grocery_CRUD');         
                $autoload['helper'] = array('url');
base/ci_213/system/...
base/ci_213/assets/...
base/www/index.php
        $system_path        = '../ci_213/system';
        $application_folder = '../ci_213/application/demo';

With the above setting, i'm able to view webpage "Welcome to CodeIgniter!" 通过以上设置,我可以查看网页“ Welcome to CodeIgniter!”。 (localhost) (本地主机)

member.php member.php

class Member extends CI_Controller
{
    public function __construct()   {       parent::__construct();    }
    public function index() { echo "<h1>Welcome to the world of Codeigniter</h1>";  }

    public function employees()
    {
    $crud = new grocery_CRUD();
    $crud -> set_table('employees');
    $output = $crud -> render();
    $this -> load -> view('template_member', $output);
    }
}

template_member.php template_member.php

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>Grocery CRUD Testing</title>
        <?php   foreach($css_files as $file): ?>
        <link type="text/css" rel="stylesheet" href="<?php echo $file; ?>" />
        <?php   endforeach; ?>
        <?php   foreach($js_files as $file): ?>
        <script src="<?php echo $file; ?>"></script>
        <?php   endforeach; ?>
        <style type='text/css'>
    </head>
    <body> 
    <?php   echo $output;   ?>

I'm able to view "Welcome to the world of Codeigniter" (localhost/member) 我可以查看“欢迎来到Codeigniter的世界”(本地主机/成员)

I'm having problem to view (localhost/member/employees). 我在查看时有问题(本地主机/成员/员工)。 It shows me a blank white page. 它显示了一个空白的白页。

But when i look at the html code, it shows all the employees data are inside the html code. 但是当我查看html代码时,它显示所有员工数据都在html代码内。
I do not know why it does not display the content but give a blank white page. 我不知道为什么它不显示内容而是显示空白页。

Pls advice what i've missed out, thanks. 请告诉我我错过了什么,谢谢。

Partial html code: 部分html代码:

<link type="text/css" rel="stylesheet" href="http://localhost/assets/grocery_crud/themes/flexigrid/css/flexigrid.css" />
<link type="text/css" rel="stylesheet" href="http://localhost/assets/grocery_crud/css/jquery_plugins/fancybox/jquery.fancybox.css" />
<script src="http://localhost/assets/grocery_crud/js/jquery-1.8.2.min.js"></script>
<script src="http://localhost/assets/grocery_crud/themes/flexigrid/js/cookies.js"></script>
<script src="http://localhost/assets/grocery_crud/themes/flexigrid/js/flexigrid.js"></script>
<script src="http://localhost/assets/grocery_crud/themes/flexigrid/js/jquery.form.js"></script>
<script src="http://localhost/assets/grocery_crud/js/jquery_plugins/jquery.numeric.min.js"></script>
<script src="http://localhost/assets/grocery_crud/themes/flexigrid/js/jquery.printElement.min.js"></script>
<script src="http://localhost/assets/grocery_crud/js/jquery_plugins/jquery.fancybox.pack.js"></script>
<script src="http://localhost/assets/grocery_crud/js/jquery_plugins/jquery.easing-1.3.pack.js"></script>

在template_member.php中,删除代码为<style type='text/css'>或将其替换为代码<style type='text/css'></style>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM