1

我对 Codeigniter 还很陌生,我试图从我的模型中调用一个函数,但我无法让它工作。谁能看到我在这里做错了什么?

控制器(farm.php):

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

    class Farm extends CI_Controller {

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

        function harvest()
        {

            echo $this->harvest_first->harvest();
        }   
    }

模型(harvest_first.php):

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

    class Harvest_first extends CI_Model
    {

        public function __construct()
        {
            parent::__construct();
        }

        public function harvest(){
            return "THE FUNCTION";
        }
    }
?>

我试图呼应“功能”,但无论我做什么,我都无法让它按预期工作。

谢谢,西蒙

4

2 回答 2

2

尝试这个

class Harvest_first extends CI_Model

改成 :

class Harvest_first_model extends CI_Model

在这样的控制器调用中:

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

 $this->harvest_first_model->harvest();
于 2013-10-04T12:16:14.283 回答
0

在这里检查

  • 无需将“_model”添加到取决于您的模型
  • 只需加载模型并使用 autoload.php 并在那里添加模型,这是一个很好的做法
于 2013-10-04T12:38:22.437 回答