如何设置此数据以使用视图和模型

时间:2015-02-17 20:09:22

标签: php sql-server codeigniter

我遇到的问题不确定如何设置模型,视图和控制器。我是新来的codigniter,有点迷失了还在学习。我在控制器中设置了一切,我知道现在是错误的,当我点击提交后插入记录时,页面出现页面无法显示。什么时候它应该重定向我回到我插入记录。

员工控制员

 <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

    class Employee extends CI_Controller {
    function __construct()
{
    parent::__construct();
    $this->load->model('employee_model');

    }   

    //Insert the employee 
        public function  insert_employee()
        { 


            $data=array('name'=>$this->input->post('name'),
                'LanId'=>$this->input->post('LanId'),
                'reason'=>$this->input->post('reason'),
                'PepNumber'=>$this->input->post('PepNumber'),
                'Employee_Number'=>$this->input->post('Employee_Number'),
                'department'=>$this->input->post('department'),

                'status'=>1);
            //print_r($data);

            $result=$this->employee_model->insert_employee($data);
            if($result==true)
            {
                $this->session->set_flashdata('msg',"Employee Records Added Successfully");
                redirect('employee/index');

            }
            else
            {

                $this->session->set_flashdata('msg1',"Employee Records Added Failed");
                redirect('employee/index');


            }
        }

员工模式

<?php

class Employee_model extends CI_Model 
{

    public function insert_employee($data)
    {
        $this->db->insert('employee_list',$data);
        return ($this->db->affected_rows() != 1 ) ? false:true;
    }
    public function get_employee()
    {
        $this->db->select('*');
        $this->db->from('employee_list');
        $this->db->where('status',1);

        $query =$this->db->get();
        return $query->result();
    }
    public function delete_employee($id,$data)
    {
        $this->db->where('id',$id);
        $this->db->update('employee_list',$data);
        return ($this->db->affected_rows() != 1 ) ? false:true;
    }
    public function edit_employee($id)
    {
        $this->db->select('*');
        $this->db->from('employee_list');
        $this->db->where('id',$id);
        $this->db->where('status',1);
        $query =$this->db->get();
        return $query->result();

    }
    public function update_employee($data,$id)
    {
        $this->db->where('id',$id);
        $this->db->update('employee_list',$data);
        return ($this->db->affected_rows() != 1 ) ? false:true;
    }
}

2 个答案:

答案 0 :(得分:0)

在codeigniter中使用模型:

$this->load->model('Model_Name');

你从Model_Name类调用方法:

$this->Model_Name->some_method($parametar1, $parametar2);

答案 1 :(得分:0)

在使用之前没有加载模型。

有多种方法可以使用模型。

如果您需要准时,可以在功能中加载它:

public function myFunction()
{
    $this->load->model("mymodel");
    $this->mymodel->myfunction();
}

但是,如果它是控制器中非常常见的模型,则可以在构造函数中加载一次:

class MyController extends CI_Controller 
{

    public function __construct()
    {
        parent::__construct();
        $this->load->model('mymodel');
    }

    public function index()
    {
        $this->mymodel->myfunc();
    }
}

最后,如果它是您应用中的核心模型,则可以为所有控制器加载它。

转到application / config / autoload.php:

$autoload['model'] = array("mymodel");

编辑:此外,模型的返回不正确。

return $this->db->affected_rows(); //It's enought :)