0

帮助...我不知道从哪里开始调试
我下载了 codeigniter 杂货杂货。安装每一个要求。现在它给我。
grocery crud template doesn't exist
图书馆/grocery_crud.php
在第 1388 行...

编辑

if(!file_exists($this->theme_path.$this->theme.'/views/list_template.php'))
        {
            throw new Exception('The template does not exist. Please check your files and try again.', 12);
            die();
        }

它与这段代码有关.....即使在下载的 zip 文件中我也找不到 list_template.php

4

1 回答 1

2

dump($this->theme_path);dump($this->theme);检查这些对象中的路径是什么,如果根路径可以,而不是检查你的目录是否有这个文件

your_project_folder\assets\grocery_crud\themes\datatables\views\list_template.php
your_project_folder\assets\grocery_crud\themes\flexigrid\views\list_template.php
于 2013-04-11T13:11:13.900 回答