CodeIgniter - 将数据保存在模型中

时间:2012-08-06 15:37:11

标签: php codeigniter model static

基本上,我所拥有的是:

class Database extends CI_Model
{
    function __construct()
    {
        parent::__construct();
    }

    function connect($connection_infos)
    {
        $db = @new mysqli($connection_infos['host'], $connection_infos['username'],
                $connection_infos['password'], $connection_infos['database']);
        if (mysqli_connect_errno())
            return FALSE;
        else
            return TRUE;
    }
}

此模型加载到控制器的函数中:

class Management extends CI_Controller
{

    static $dbs = array(
                'ref' => array(
                    'connected' => FALSE,
                ),
                'dest' => array(
                    'connected' => FALSE,
                )
            );

    function connection()
    {
        $this->load->library('form_validation');
        $data = array();

        $this->form_validation->set_rules('host', 'Hostname', 'required');
        $this->form_validation->set_rules('username', 'Username', 'required');
        $this->form_validation->set_rules('database', 'Database', 'required');
        if (!$this->form_validation->run()) {
            $data['dbs'] = self::$dbs;
        } else {
            $this->load->model('database'); // Here I load the model
            $connection_infos = array(
                    'host' => $this->input->post('host'),
                    'username' => $this->input->post('username'),
                    'password' => $this->input->post('password'),
                    'database' => $this->input->post('database'),
                );
            if ($this->database->connect($connection_infos)) {
                self::$dbs['ref']['connected'] = TRUE;
                $data['dbs'] = self::$dbs;
            }
        }
        $this->load->view('dashboard', $data);
    }
}

所以这就是我所做的:

在我视图中的表单验证中,我从Controller中调用函数connection。此函数加载Database模型,并调用模型的函数connect

我的问题是:如果我想让我的模型中的其他功能让其他人请求,我是否会被迫每次都打开一个连接?如果是,我如何“存储”连接凭证?

谢谢!

1 个答案:

答案 0 :(得分:3)

根据我的看法,您需要访问CI文档并阅读database library上的 lot

除了本教程中介绍的基本语法/语义之外,名为“Database”的模型是不合逻辑的,并不是一个很好的命名选择。在CodeIgniter的范围内,您应该尝试使模型仅与一个数据库表具体相关。

对于实际的数据库连接,它在CI_Model类中自动处理为成员对象$db。我建议您阅读models上的文档和CI中的database connections

因此,当您正确设置所有内容时,加载正确编码的模型将为您提供模型中的自动数据库连接,无论何时您都可以重复使用。