我正在尝试为我的代码点火器项目添加分页。我正在为我的模型使用Doctrine而我似乎无法使用$ this-> load-> model('gif')来访问我的控制器中的方法。我猜一个Doctrine模型的行为方式不同,但肯定有办法调用公共方法吗?
这是我的控制器:
<?php
class View extends Controller
{
function index()
{
// load pagination class
$gifs = Doctrine::getTable('Gif')->findAll();
$this->load->library('pagination');
$config['base_url'] = base_url().'view/';
$config['total_rows'] = count($gifs);
$config['per_page'] = '5';
$config['full_tag_open'] = '<p>';
$config['full_tag_close'] = '</p>';
$this->pagination->initialize($config);
//load the model and get results
//$this->load->model('gif');
$data['results'] = $gifs->getGifs($config['per_page'],$this->uri->segment(2));
// load the view
$this->load->view('front_images', $data);
}
}
这是我的模特
<?php
class Gif extends Doctrine_Record {
public function setTableDefinition()
{
$this->hasColumn('photo_path', 'string', 255, array('unique' => true, 'notnull' => true));
$this->hasColumn('title', 'string', 255, array('notnull' => true));
$this->hasColumn('user_id', 'integer', 4);
$this->hasColumn('token', 'string', 255);
}
public function setUp()
{
$this->actAs('Timestampable');
$this->hasOne('User', array(
'local' => 'user_id',
'foreign' => 'id'
));
}
public function preInsert($event)
{
$this->token = (sha1(rand(11111, 99999)));
}
public function numGifs() {
$result = Doctrine_Query::create()
->select('COUNT(*) as num_gifs')
->from('Gif')
->fetchOne();
return $result['num_gifs'];
}
public function getGifs($offset, $limit)
{
$gifs = Doctrine_Query::create()
->from('Gif g')
->orderBy('g.created_at DESC')
->limit($limit)
->offset($offset)
->execute();
return $gifs;
}
}
如何从该控制器调用numGifs和getGifs方法?提前谢谢!
答案 0 :(得分:0)
我也将CI与学说结合起来使用。作为参考我跟随位于http://www.phpandstuff.com/articles/codeigniter-doctrine-from-scratch-day-1-install-and-setup的tuto。
我不知道您是否遵循了类似的步骤,但使用此方法模型不需要加载,而是实例化。 例如。
$g = new Gif();
$g = $g->getGifs();
(虽然在这种特殊情况下 - $ g只需要一行 - 我不确定我们是否可以在表示表本身的模型中定义getter函数。在tuto am之后,模型只包含db表定义以及任何关系)
希望这会有所帮助。