作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 CodeIgniter 的新手。为了可重用性,我想在一个单独的类函数中执行所有数据库查询。 和 JAVA spring 框架一样。
示例:我需要不同 Controller 中所有用户的列表。为此,在单独的类函数中编写了对 getAllUser() 的查询。之后我可以从不同的 Controller 调用它
这是我试图实现我的目标的一段代码
这将是我的服务等级
class UserManagementServices extends CI_Controller {
public static function getAllUsers(){
$this->load->database();
return $this->db->query("SELECT * FROM users");
}
public static function getUser($userId){ ... }
public static function removeUser($userId){ ... }
public static function getUserHistory($userId){ ... }
}
这将是我的 Controller 类
class User extends CI_Controller {
public function index(){
$this->load->view('userHome');
}
public function viewAllUser(){
include 'application/controllers/UserManagementService.php';
var_dump(UserManagementService::getAllUsers());
}
}
但是这段代码是行不通的。
在 CodeIgniter 中不允许我在静态方法中执行查询。当我尝试这个时
class UserManagementServices extends CI_Controller {
public static function getAllUsers(){
return 'Testing Purpose...';
}
}
而且效果很好。
最佳答案
首先,静态方法没有任何 CI 可用的东西。因此,从那里对数据库做某事是行不通的。其次,CI 中的 Controller 通常映射到 URI,因此最好只这样使用它们。
如果您有一些可重复使用的代码,那么创建一个帮助程序或一个库就是您所需要的。您将它们存储在一个单独的文件夹中,然后可以加载库,例如,像这样:$this->load->library('class_name');
然后像这样访问它们: $this->class_name->method();
但这不适用于您的数据库。数据访问由您的模型处理 (duh)。您以与库非常相似的方式创建它们,并且在 CI 文档中对其进行了很好的解释,您应该阅读:http://ellislab.com/codeigniter/user-guide/index.html
关于php - 如何在 Codeigniter 的单独类函数中执行 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20976028/
我是一名优秀的程序员,十分优秀!