Can you access a model from inside another model in CodeIgniter?(您可以从 CodeIgniter 中的另一个模型内部访问模型吗?)
问题描述
我正在使用需要身份验证的 CodeIgniter 编写 web 应用程序.我创建了一个模型来处理我的所有身份验证.但是,我找不到从另一个模型内部访问此身份验证模型的方法.有没有办法从另一种模式内部访问模型,或者在 CodeIgniter 内部处理身份验证的更好方法?
I am writing a webapp using CodeIgniter that requires authentication. I created a model which handles all my authentication. However, I can't find a way to access this authentication model from inside another model. Is there a way to access a model from inside another mode, or a better way to handle authentication inside CodeIgniter?
推荐答案
通常,您不希望在对象内创建对象.这是一个坏习惯,相反,编写清晰的 API 并将模型注入您的模型中.
In general, you don't want to create objects inside an object. That's a bad habit, instead, write a clear API and inject a model into your model.
<?php
// in your controller
$model1 = new Model1();
$model2 = new Model2();
$model2->setWhatever($model1);
?>
这篇关于您可以从 CodeIgniter 中的另一个模型内部访问模型吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:您可以从 CodeIgniter 中的另一个模型内部访问模型吗?
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 使用 PDO 转义列名 2021-01-01